:root{
  --bg:#0d1016;
  --text:#ffffff;
  --muted:rgba(255,255,255,.78);
  --line:rgba(255,255,255,.14);
  --white:#ffffff;
  --accent:#018ad8;
  --accent-dark:#003472;
  --dark:#11151b;
}

*{
  box-sizing:border-box;
}

html,
body{font-family: 'Montserrat', sans-serif;font-weight: 300; /* Normal ağırlık */
  padding-top:120px;
  margin:0;
  padding:0;
}

body{
  font-family: 'Montserrat', sans-serif;
  color:var(--text);
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.hero{
  position:relative;
  min-height:80vh;
  width:100%;
  overflow:hidden;
  background:#0b0f14;
}

.slides{
  position:absolute;
  inset:0;
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:opacity .8s ease, visibility .8s ease;
}

.slide.active{
  opacity:1;
  visibility:visible;
}

.slide-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  transform-origin: center center;
  filter: brightness(.75) contrast(1.05);
}

.slide.active .slide-bg{
  animation: heroZoom 5s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

.slide::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(6,9,14,.88) 0%, rgba(6,9,14,.74) 30%, rgba(6,9,14,.28) 58%, rgba(6,9,14,.18) 100%),
    linear-gradient(180deg, rgba(7,10,15,.12) 0%, rgba(7,10,15,.24) 100%);
}

.slide::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:radial-gradient(circle at 72% 38%, rgba(215,25,32,.20), transparent 28%);
}

.topbar-wrap{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:100;
  padding-top:14px;
}
.topbar.scrolled{
  background:rgba(255,255,255,.98);
  box-shadow:0 12px 35px rgba(0,0,0,.15);
}

.topbar{
  width:min(1480px, calc(100% - 44px));
  margin:0 auto;
  min-height:92px;
  padding:14px 18px 14px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  border-radius:999px;
  background:rgba(255,255,255,1);
  color:#171717;
  box-shadow:0 20px 55px rgba(0,0,0,.24);
  transition:background .25s ease, box-shadow .25s ease;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-mark{
  width:60px;
  height:60px;
}

.brand-text img{
  height: 58px;   /* en ideal değer */
  width: auto;
  display: block;
}

.brand-text{
  line-height:1;
}

.brand-text strong{
  display:block;
  font-size:1.6rem;
  font-weight:800;
  letter-spacing:.02em;
  color:#171717;
}

.brand-text span{
  display:block;
  margin-top:4px;
  font-size:.95rem;
  font-weight:600;
  letter-spacing:.26em;
  color:#666;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:right;
  gap:32px;
  flex:1;
  flex-wrap:wrap;
}

.nav a{
  position:relative;
  font-size:1rem;
  font-weight:600;
  color:#222;
  padding:8px 0;
}

.nav a.active::after,
.nav a:hover::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-4px;
  height:3px;
  border-radius:999px;
  background:var(--accent);
}

.cta{
  height:58px;
  padding:0 28px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  font-weight:700;
  color:#fff;
  background: linear-gradient(135deg, #018ad8, #003472);
  transition:.25s ease;
}

.cta:hover{
  background:linear-gradient(135deg, var(--accent), var(--accent-dark));
  transform:translateY(-2px);
}

.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:8;
  width:56px;
  height:56px;
  border:none;
  border-radius:50%;
  cursor:pointer;
  color:#fff;
  font-size:1.8rem;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
  transition:.25s ease;
}

.arrow:hover{
  background:rgba(215,25,32,.95);
  transform:translateY(-50%) scale(1.05);
}

.arrow.prev{
  left:22px;
}

.arrow.next{
  right:22px;
}

.hero-inner{
  position:relative;
  z-index:4;
  width:min(1480px, calc(100% - 44px));
  min-height:80vh;
  margin:0 auto;
  display:grid;
  grid-template-columns:92px minmax(0, 640px) 1fr;
  align-items:center;
  gap:28px;
  padding: 110px 0 80px;
}

.slide-nums{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  position:relative;
}

.slide-nums::before{
  content:"";
  position:absolute;
  top:8px;
  bottom:8px;
  width:1px;
  background:rgba(255,255,255,.32);
}

.num{
  position:relative;
  z-index:1;
  width:42px;
  height:42px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  display:grid;
  place-items:center;
  font-size:.9rem;
  font-weight:700;
  color:rgba(255,255,255,.72);
  background:rgba(255,255,255,.04);
  transition:.3s ease;
}

.num.active{
  color:#fff;
  background:var(--accent);
  box-shadow:0 0 0 8px rgba(0,52,114,.16);
}

.content{
  position:relative;
  z-index:5;
  max-width:640px;
}

.eyebrow{
  margin-bottom:20px;
  font-size:.9rem;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#018ad8;
}

.content h1 {
    margin: 0;
    font-size: clamp(1.4rem, 3.6vw, 2.6rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.desc{
  margin-top:24px;
  max-width:600px;
  font-size:1.08rem;
  line-height:1.9;
  color:var(--muted);
}

.actions{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:34px;
  flex-wrap:wrap;
}

.btn{
  min-width:190px;
  height:58px;
  padding:0 26px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  transition:.25s ease;
}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg, #018ad8, #003472);
  box-shadow:0 16px 40px rgba(0,52,114,.28);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-secondary{
  color:#fff;
  border:1px solid rgba(255,255,255,.34);
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(8px);
}

.visual-space{
  min-height:420px;
}

.thumb-bar{
  position:absolute;
  right:30px;
  top:50%;
  transform:translateY(-50%);
  width:110px;
  z-index:10;
}

.thumb-track{
  display:flex;
  flex-direction:column; /* 🔥 en önemli */
  gap:12px;
  padding:10px;
  border-radius:20px;

  background:rgba(10,12,18,.55);
  backdrop-filter:blur(12px);

  max-height:420px;
  overflow:hidden;
}

.thumb-track::-webkit-scrollbar{
  display:none;
}

.thumb{
  position:relative;
  width:100%;
  height:70px;
  flex:0 0 auto;
  border:none;
  padding:0;
  border-radius:14px;
  overflow:hidden;
  background:none;
  cursor:pointer;
  border:1px solid rgba(255,255,255,.14);
  transition:.25s ease;
}

.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.thumb::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 25%, rgba(0,0,0,.78) 100%);
  z-index:1;
}

.thumb::after{
  content:attr(data-title);
  position:absolute;
  left:7px;
  right:7px;
  z-index:2;
  font-size:.65rem;
  bottom:6px;
  font-weight:700;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  text-shadow:0 2px 8px rgba(0,0,0,.9);
}

.thumb:hover img,
.thumb.active img{
  transform:scale(1.08);
}

.thumb.active{
  border-color:rgba(1,138,216,.95);
  box-shadow:0 0 0 2px rgba(1,138,216,.34);
}

.site-footer{
  background:#0b0f14;
  color:rgba(255,255,255,.72);
  font-size:.95rem;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-inner{
  width:min(1480px, calc(100% - 44px));
  margin:0 auto;
  padding:22px 0;
}

@media (max-width:1200px){
  .hero-inner{
    grid-template-columns:72px minmax(0, 1fr);
  }

  .visual-space{
    display:none;
  }

  .nav{
    gap:20px;
  }
}

@media (max-width:920px){
  

  .hero-inner{
    grid-template-columns:1fr;
    padding-top:150px;
    padding-bottom:120px;
  }

  .slide-nums{
    flex-direction:row;
    justify-content:flex-start;
    gap:10px;
  }

  .slide-nums::before{
    display:none;
  }

  .arrow{
    display:none;
  }

  .thumb-bar{
    display:none;
  }
}

@media (max-width:919px){
  .topbar,
  .hero-inner,
  .footer-inner{
    width:calc(100% - 24px);
  }

  .brand-text strong{
    font-size:1.26rem;
  }

  .brand-text span{
    font-size:.82rem;
  }

  .content h1{
    font-size:2.2rem;
  }

  .desc{
    font-size:.98rem;
    line-height:1.75;
  }

  .btn{
    width:100%;
  }

  .thumb-track{
    justify-content:flex-start;
  }
}
.buyukikon{ font-size:22px;}
.cta-call-icon::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(2,141,230,0.4);
    animation: pulseRing 2s infinite;
    z-index: -1;
}

@keyframes pulseRing{
    0%{ transform: scale(1); opacity: .6; }
    70%{ transform: scale(2); opacity: 0; }
    100%{ transform: scale(2); opacity: 0; }
} /* default: gizli */
.cta-call-icon{
    display: none;
}
.gosterme{display:block;}
/* mobilde göster */
@media (max-width: 768px){.gosterme{ display:none !important;}
    .cta-call-icon{
        display: grid;
    }
}.kayanyazi{bottom:0; position:relative; background-color:#fff; height:100px;margin-top: -1px;}
.topbar-actions{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav-item{
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item > a{
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  padding: 8px 0;
  text-decoration: none;
}

.nav-drop-btn{
  width: 22px;
  height: 22px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.nav-drop-btn span{
  width: 8px;
  height: 8px;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  transform: rotate(45deg);
  transition: .25s ease;
}

.has-dropdown:hover .nav-drop-btn span{
  transform: rotate(225deg);
  margin-top: 6px;
}

.dropdown-menu{
  position: absolute;
  top: 100%;
  margin-top: 14px;
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  overflow: hidden;
  padding: 0;
  z-index: 50;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.dropdown-menu a{
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 14px 20px;
  font-size: .96rem;
  font-weight: 600;
  color: #1c1c1c;
  text-decoration: none;
  transition: .22s ease;
}

/* ikon */
.dropdown-menu a img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 22px;
  opacity: .9;
  transition: transform .22s ease, opacity .22s ease;
}

/* hover arka planı */
.dropdown-menu a:hover{
  background: rgba(0,134,221,.06);
  color: var(--accent);
}

/* hover’da ikon hafif büyüsün */
.dropdown-menu a:hover img{
  transform: scale(1.08);
  opacity: 1;
}

.dropdown-menu a::after{
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.dropdown-menu a:hover::after{
  transform: scaleX(1);
}

/* ilk eleman */
.dropdown-menu a:first-child:hover{
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* son eleman */
.dropdown-menu a:last-child:hover{
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* son elemandaki çizgi taşmasın */
.dropdown-menu a:last-child::after{
  bottom: 2px;
}
.has-dropdown{
  position: relative;
}

.has-dropdown::after{
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 18px;
}
.has-dropdown:hover .dropdown-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-toggle{
  width:54px;
  height:54px;
  border:none;
  border-radius:50%;
  background:linear-gradient(135deg, #161a22, #303744);
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  padding:0;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.mobile-toggle span{
  width:20px;
  height:2px;
  background:#fff;
  border-radius:999px;
  display:block;
}

.mobile-menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.48);
  opacity:0;
  visibility:hidden;
  transition:.28s ease;
  z-index:120;
}

.mobile-menu-overlay.active{
  opacity:1;
  visibility:visible;
}

.mobile-menu{
  position:fixed;
  top:0;
  right:0;
  width:min(360px, 88%);
  height:100vh;
  background:#fff;
  color:#171717;
  z-index:130;
  transform:translateX(100%);
  transition:.33s ease;
  box-shadow:-20px 0 60px rgba(0,0,0,.18);
  display:flex;
  flex-direction:column;
}

.mobile-menu.active{
  transform:translateX(0);
}

.mobile-menu-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:18px 16px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.mobile-brand{
  gap:12px;
  min-width:unset;
}

.mobile-close{
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:#f2f4f7;
  color:#171717;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  flex:0 0 42px;
}

.mobile-menu-body{
  padding:14px 16px 20px;
  overflow-y:auto;
}

.mobile-link{
  display:block;
  padding:15px 0;
  font-size:1rem;
  font-weight:700;
  color:#171717;
  border-bottom:1px solid rgba(0,0,0,.07);
}

.mobile-link.active{
  color:var(--accent);
}

.mobile-item{
  border-bottom:1px solid rgba(0,0,0,.07);
}

.mobile-sub-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.mobile-sub-head .mobile-link{
  border-bottom:none;
  padding-right:10px;
}

.mobile-sub-toggle{
  width:38px;
  height:38px;
  border:none;
  background:transparent;
  border-radius:50%;
  cursor:pointer;
  position:relative;
  flex:0 0 38px;
}

.mobile-sub-toggle::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:9px;
  height:9px;
  border-right:2px solid #171717;
  border-bottom:2px solid #171717;
  transform:translate(-50%, -60%) rotate(45deg);
  transition:.25s ease;
}

.mobile-item.active .mobile-sub-toggle::before{
  transform:translate(-50%, -25%) rotate(225deg);
}

.mobile-sub-menu{
  display:none;
  padding:0 0 10px 14px;
}

.mobile-item.active .mobile-sub-menu{
  display:block;
}

.mobile-sub-menu a{
  display:block;
  padding:10px 0;
  font-size:.95rem;
  font-weight:600;
  color:#555;
}

.mobile-sub-menu a:hover{
  color:var(--accent);
}

.mobile-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:18px;
  height:56px;
  border-radius:999px;
  background:linear-gradient(135deg, #161a22, #303744);
  color:#fff;
  font-weight:700;
}

body.menu-open{
  overflow:hidden;
}

@media (max-width:920px){
  .nav{
    display:none;
  }

  .cta{
    display:none;
  }

  .mobile-toggle{
    display:flex;
  }

  .topbar{
    justify-content:space-between;
    flex-wrap:nowrap;
    min-height:84px;
    border-radius:999px;
    padding:14px 16px 14px 18px;
  }

  .brand{
    flex:1;
    min-width:0;
    justify-content:flex-start;
  }

  .brand-text strong{
    font-size:1.2rem;
  }

  .brand-text span{
    font-size:.78rem;
    letter-spacing:.18em;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
}
}

@media (max-width:640px){
  .topbar{
    width:calc(100% - 20px);
    top:auto;
    padding:12px 14px 12px 14px;
    min-height:78px;
  }

  .topbar-wrap{
    top:12px;
  }

  .mobile-menu{
    width:min(340px, 92%);
  }

  .brand-text strong{
    font-size:1.05rem;
  }

  .brand-text span{
    font-size:.72rem;
    letter-spacing:.14em;
  }

  .mobile-toggle{
    width:48px;
    height:48px;
  }
}
@media (max-width: 920px){

  .hero{
    min-height: 100svh;
  }

  .hero-inner{
    width: calc(100% - 24px);
    min-height: 100svh;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
    padding: 120px 0 140px;
  }

  .slide-nums{
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
  }

  .slide-nums::before{
    display: none;
  }

  .num{
    width: 40px;
    height: 40px;
    font-size: .88rem;
  }

  .content{
    max-width: 100%;
    padding-right: 8px;
  }

  .eyebrow{
    margin-bottom: 14px;
    font-size: .78rem;
    letter-spacing: .16em;
    line-height: 1.4;
  }

  .content h1{
    font-size: clamp(2rem, 8vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -.03em;
    max-width: 100%;
  }

  .desc{
    margin-top: 16px;
    max-width: 100%;
    font-size: .98rem;
    line-height: 1.7;
    color: rgba(255,255,255,.82);
  }

  .actions{
    margin-top: 24px;
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .btn{
    width: 100%;
    min-width: 100%;
    height: 54px;
    padding: 0 18px;
    font-size: .98rem;
  }

  .visual-space{
    display: none;
  }

  .arrow{
    display: none;
  }

  .thumb-bar{
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    width: calc(100% - 24px);
  }

  .thumb-track{
    justify-content: flex-start;
    gap: 8px;
    padding: 8px;
    border-radius: 22px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }

  .thumb{
    width: 72px;
    height: 46px;
    border-radius: 10px;
  }

  .thumb::after{
    font-size: .54rem;
    left: 6px;
    right: 6px;
    bottom: 4px;
  }
}
@media (max-width: 640px){

  .hero{
    min-height: 100svh;
  }

  .hero-inner{
    width: calc(100% - 20px);
    padding: 112px 0 132px;
    gap: 16px;
  }

  .slide::before{
    background:
      linear-gradient(180deg, rgba(6,9,14,.78) 0%, rgba(6,9,14,.58) 32%, rgba(6,9,14,.72) 100%),
      linear-gradient(90deg, rgba(6,9,14,.74) 0%, rgba(6,9,14,.34) 55%, rgba(6,9,14,.20) 100%);
  }

  .slide::after{
    background: radial-gradient(circle at 68% 34%, rgba(215,25,32,.14), transparent 30%);
  }

  .num{
    width: 38px;
    height: 38px;
    font-size: .82rem;
  }

  .eyebrow{
    font-size: .72rem;
    margin-bottom: 12px;
  }

  .content h1{
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 1.06;
  }

  .desc{
    font-size: .92rem;
    line-height: 1.65;
    margin-top: 14px;
  }

  .actions{
    margin-top: 20px;
  }

  .btn{
    height: 52px;
    font-size: .95rem;
  }

  .thumb-bar{
    width: calc(100% - 20px);
    bottom: 14px;
  }

  .thumb-track{
    padding: 7px;
    gap: 7px;
  }

  .thumb{
    width: 68px;
    height: 44px;
  }

  .thumb::after{
    font-size: .5rem;
  }
}
@media (max-width: 420px){

  .hero-inner{
    padding: 108px 0 128px;
  }

  .content h1{
    font-size: 1.85rem;
  }

  .desc{
    font-size: .9rem;
  }

  .thumb{
    width: 64px;
    height: 42px;
  }

  .thumb::after{
    display: none;
  }
}
.metal-services-section{
    position: relative;
    padding: 90px 0;
    background: #e1e5f5;
    overflow: hidden;
}

.metal-services-head.center{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.metal-services-head.center .metal-services-mini-title{
    margin-bottom: 10px;
}

.metal-services-head.center .metal-services-title{
    max-width: 700px;
}

.metal-services-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/bg-3.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.10;
    pointer-events: none;
}

.metal-services-container{
    position: relative;
    z-index: 2;
    width: min(1320px, calc(100% - 30px));
    margin: 0 auto;
}

.metal-services-head{
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.metal-services-mini-title{
    display: inline-block;
    font-size: 38px;
    font-weight: 700;
    color: #00438e;
    margin-bottom: 12px;
}

.metal-services-title{
    margin: 0;
    font-size: 52px;
    line-height: 1.12;
    font-weight: 800;
    color: #171717;
}

.metal-services-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    height: 58px;
    padding: 0 24px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 18px;
    background: rgba(255,255,255,0.65);
    color: #202020;
    text-decoration: none;
    font-weight: 700;
    transition: .3s ease;
}

.metal-services-btn:hover{
    background: #00438e;
    color: #fff;
    border-color: #00438e;
}

.metal-services-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.metal-service-card{
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;border: 3px solid #e1e5f5;
}

/* RESİM ALANI */
.metal-service-image-wrap{
    position: relative;
    height: 340px;
    border-radius: 32px;
    overflow: hidden;
    background: #e1e5f5;
	
}
.metal-service-image-wrap::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;
    /* Box shadow yerine gerçek border kullanmak bazen daha temiz sonuç verir */
    border: 2px solid #e1e5f5; 
    pointer-events: none;
    z-index: 4; /* Arrow (z-index 5) altında kalmalı */
}

.metal-service-image-wrap img{
    width: 100%;
    height: 100%;border-radius: 32px;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;border: 1px solid #f3f3f3;
}

.metal-service-card:hover .metal-service-image-wrap img{
    transform: scale(1);
}

/* SAĞ ÜST KÖŞE BEYAZ ALAN */
.metal-service-arrow{
    position: absolute;
    top: 0;
    right: 0;
    width: 84px;
    height: 84px;
    background: #e1e5f5;
    border-bottom-left-radius: 28px;
    display: block;
    z-index: 5;
    overflow: visible;
}

/* soldaki kıvrım */
.metal-service-arrow::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 2px;
    width: 24px;
    height: 24px;
    background: transparent;
    border-top-right-radius: 18px;
    /* Gölgeyi biraz büyüterek (10px) sızıntıyı kapattık */
    box-shadow: 8px -8px 0 0px #e1e5f5; 
    z-index: 1;
}

/* alttaki kıvrım */
.metal-service-arrow::after { content: ""; 
    position: absolute; 
    right: 2px;
    bottom: -24px;
    width: 24px; 
    height: 24px; 
    background: transparent; 
    border-top-right-radius: 18px; 
    box-shadow: 8px -8px 0 0px #e1e5f5; 
    transform: rotate(0deg); /* 358deg yerine 0 veya 90-270 kombinasyonu daha stabil olur */
    z-index: 1; }

/* İÇTEKİ YUVARLAK OK */
.metal-service-arrow i {
    position: absolute;
    top: 15px;
    right: 12px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: #0f1c4d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 18px rgb(0 0 0 / 8%);
    transition: .35s ease;
    overflow: visible;
}


.metal-service-card:hover .metal-service-arrow i{
    background: #00438e;
    color: #fff;
    transform: rotate(45deg);
}

/* ALT İÇERİK KUTUSU */
.metal-service-content{
    position: relative;
    width: calc(100% - 42px);
    margin: -58px auto 0;
    background: rgba(255,255,255,0.97);
    border-radius: 0 0 24px 24px;
    padding: 58px 24px 28px;
    text-align: center;
    box-shadow: 0 16px 30px rgba(0,0,0,0.08);
    transition: all .35s ease;
    z-index: 99;
}

.metal-service-card:hover .metal-service-content{
    background: linear-gradient(to bottom left, #0089e1 0%, #012761 60%);
}

.metal-service-card:hover .metal-service-content h3{
    color: #fff;
}

.metal-service-card:hover .metal-service-content p{
    color: rgba(255,255,255,0.85);
}

/* ORTA İKON */
.metal-service-icon {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 2px solid #003472;
    transition: .35s ease;
}

.metal-service-card:hover .metal-service-icon{
    background: #fff;
    color: #fff; border: 2px solid #00438e;
}

.metal-service-icon img{
	margin-top:5px;
	margin-left:3px;
    max-width: 50px;
    max-height: 50px;
    display: block;
}

.metal-service-content h3{
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: #18203a;
    transition: .35s ease;
}

.metal-service-content p{
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    transition: .35s ease;
}

/* 1199 */
@media (max-width: 1199px){
    .metal-services-title{
        font-size: 22px;
    }

    .metal-service-image-wrap{
        height: 300px;
    }

    .metal-service-content h3{
        font-size: 25px;
    }
}

/* 991 */
@media (max-width: 991px){
    .metal-services-head{
        flex-direction: column;
        align-items: flex-start;
    }

    .metal-services-grid{
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .metal-service-image-wrap{
        height: 320px;
    }
}

/* 575 */
@media (max-width: 575px){
    .metal-services-section{
        padding: 70px 0;
    }

    .metal-services-title{
        font-size: 32px;
    }

    .metal-services-mini-title{
        font-size: 15px;
    }

    .metal-services-btn{
        min-width: 180px;
        height: 52px;
        border-radius: 15px;
        font-size: 14px;
    }

    .metal-service-image-wrap{
        height: 250px;
        border-radius: 22px;
    }

    .metal-service-arrow{
        width: 64px;
        height: 64px;
        border-bottom-left-radius: 22px;
    }

    .metal-service-arrow::before{
        left: -18px;
        width: 18px;
        height: 18px;
        border-top-right-radius: 14px;
        box-shadow: 6px -6px 0 6px #f3f3f3;
    }

    .metal-service-arrow::after{
        bottom: -18px;
        width: 18px;
        height: 18px;
        border-top-right-radius: 14px;
        box-shadow: 6px -6px 0 6px #f3f3f3;
    }

    .metal-service-arrow i{
        top: 8px;
        right: 8px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .metal-service-content{
        width: calc(100% - 24px);
        margin-top: -44px;
        padding: 50px 18px 22px;
        min-height: auto;
        border-radius: 0 0 20px 20px;
    }

    .metal-service-icon{
        width: 54px;
        height: 54px;
        top: -24px;
        font-size: 21px;
    }

    .metal-service-icon img{
        max-width: 24px;
        max-height: 24px;
    }

    .metal-service-content h3{
        font-size: 22px;
    }

    .metal-service-content p{
        font-size: 15px;
        line-height: 1.7;
    }
}
.km-about-section {
  background: #fff;
  padding: 90px 0;
  overflow: hidden;
}

.km-about-container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.km-about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 34px;
}

.km-about-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 620px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
}

.km-about-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  display: block;
}

.km-about-content {
  padding: 10px 10px 10px 0;
}

.km-about-mini-title {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #00438e;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.km-about-title {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  color: #1a1d24;
  margin: 0 0 22px;
}

.km-about-text {
  font-size: 19px;
  line-height: 1.8;
  color: #666;
  margin: 0;
  max-width: 620px;
}

.km-about-stats-box {
    position: relative;
    margin-top: -95px;
    margin-left: auto;
    width: min(980px, 100%);
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgb(0 0 0 / 8%);
    z-index: 3;
    overflow: hidden;border: 2px dotted #bfbfbf;
}

/* pattern ekleme */
.km-about-stats-box::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background-image:
        url("../img/footer-pattern-dots-2.webp"),
        linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,1));

    background-repeat: no-repeat;
    background-position: left bottom;

    opacity: 0.2;
}
/* içerik üstte kalsın */
.km-about-stats-box > * {
    position: relative;
    z-index: 1;
}

.km-about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 38px 38px 28px;
}

.km-stat-item {
  padding: 0 20px;
}

.km-stat-item h3 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3vw, 54px);
  line-height: 1;
  font-weight: 800;
  color: #111;
}

.km-stat-item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #6b6b6b;
}

.km-about-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 38px;
  border-top: 1px solid #ececec;
}

.km-about-bottom-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.km-about-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 52px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  background-color: #fff;
}

.km-about-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;margin-top: 5px;
}

.km-about-bottom-left p {
  margin: 0;
  font-size: 28px;
  line-height: 1.3;
  color: #202020;
  font-style: italic;
  font-family: Georgia, serif;
}

.km-about-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #00438e;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.25s ease;
}

.km-about-link span {
  transition: transform 0.25s ease;
}

.km-about-link:hover {
  color: #000;
}

.km-about-link:hover span {
  transform: translateX(6px);
}

@media (max-width: 1200px) {
  .km-about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .km-about-content {
    padding-right: 0;
  }

  .km-about-stats-box {
    margin-top: 30px;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .km-about-section {
    padding: 70px 0;
  }

  .km-about-image,
  .km-about-image img {
    min-height: 460px;
  }

  .km-about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0;
  }

  .km-about-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .km-about-bottom-left p {
    font-size: 22px;
  }

  .km-about-link {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .km-about-container {
    width: min(100% - 24px, 100%);
  }

  .km-about-image,
  .km-about-image img {
    min-height: 320px;
  }

  .km-about-title {
    font-size: 34px;
  }

  .km-about-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .km-about-stats {
    grid-template-columns: 1fr;
    padding: 26px 22px 22px;
  }

  .km-stat-item {
    padding: 0;
  }

  .km-stat-item h3 {
    font-size: 34px;
  }

  .km-stat-item p {
    font-size: 15px;
  }

  .km-about-bottom {
    padding: 18px 22px;
  }

  .km-about-bottom-left {
    align-items: flex-start;
  }

  .km-about-bottom-left p {
    font-size: 18px;
  }
}
.km-faq-col{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.km-faq-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;

    background:
        radial-gradient(circle at 20% 20%, rgba(0,0,0,0.04), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0,0,0,0.04), transparent 40%),
        linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
}

.km-faq-section::before {
    content: "";
    position: absolute;
    top: 80px;
    right: 6%;
    width: 220px;
    height: 220px;
    background: url("img/footer-pattern-dots-2.webp") no-repeat center center / contain;
    opacity: 0.18;
    pointer-events: none;
}

.km-faq-head {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.km-faq-mini-title {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 16px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    
    /* GRADIENT YAZI */
    background-image: linear-gradient(135deg, #028de6, #062e5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.km-faq-mini-title2 {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 16px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background-image: linear-gradient(135deg, #028de6, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.km-faq-title {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 800;
    color: #111;
}
.km-faq-title2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
}

.km-faq-text {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}
.km-faq-text2 {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #fff;
}
.km-faq-list {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start; padding:30px;
}


.km-faq-item {
    position: relative;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.06);
    backdrop-filter: blur(8px);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.km-faq-item2 {
    position: relative;
    background: rgba(255,255,255);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.06);
    backdrop-filter: blur(8px);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.km-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.09);
    border-color: rgba(0,0,0,0.12);
}
.km-faq-item2:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.09);
    border-color: rgba(0,0,0,0.12);
}

.km-faq-item.active {
    border-color: rgba(0,0,0,0.14);
    box-shadow: 0 28px 70px rgba(0,0,0,0.10);
}
.km-faq-item2.active {
    border-color: rgba(0,0,0,0.14);
    box-shadow: 0 28px 70px rgba(0,0,0,0.10);
}

.km-faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 26px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    cursor: pointer;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: #111;
}

.km-faq-question span:first-child {
    flex: 1;
}

.km-faq-icon {
    position: relative;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #111827;
    box-shadow: 0 12px 30px rgba(17,24,39,0.22);
    transition: transform .35s ease, background .35s ease;
}

.km-faq-icon::before,
.km-faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform .35s ease, opacity .35s ease;
}

.km-faq-icon::before {
    width: 18px;
    height: 2px;
}

.km-faq-icon::after {
    width: 2px;
    height: 18px;
}

.km-faq-item.active .km-faq-icon {
    transform: rotate(180deg);
    background: #000;
}

.km-faq-item.active .km-faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0);
}
.km-faq-item2.active .km-faq-icon {
    transform: rotate(180deg);
    background: #000;
}

.km-faq-item2.active .km-faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0);
}

.km-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .45s ease;
}

.km-faq-item.active .km-faq-answer {
    grid-template-rows: 1fr;
}
.km-faq-item2.active .km-faq-answer {
    grid-template-rows: 1fr;
}

.km-faq-answer-inner {
    overflow: hidden;
    padding: 0 28px;
    color: #000;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.9;
}

.km-faq-item.active .km-faq-answer-inner {
    padding-bottom: 28px;
}
.km-faq-item2.active .km-faq-answer-inner {
    padding-bottom: 28px;
}
.sikca{background: linear-gradient(360deg, #018ad8, #052d5e);padding-top: 0px; padding-bottom:30px;}
@media (max-width: 768px) {.hero{
  padding-bottom:0px;
}.km-faq-list{grid-template-columns: 1fr;}.sikca{background: linear-gradient(360deg, #018ad8, #052d5e);padding:30px;}.brand-text img{
  height: auto;   /* en ideal değer */
  width: auto;
  display: block;
}
    .km-faq-section {
        padding: 80px 0;
    }

    .km-faq-question {
        padding: 20px 20px;
        font-size: 17px;
    }

    .km-faq-answer-inner {
        padding: 0 20px;
        font-size: 15px;
        line-height: 1.8;
    }

    .km-faq-item.active .km-faq-answer-inner {
        padding-bottom: 22px;
    }
	.km-faq-item2.active .km-faq-answer-inner {
        padding-bottom: 22px;
    }

    .km-faq-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }
}
/* eski thumb bar kapansın */


/* hero alta yer aç */
.hero{
  padding-bottom:130px;
}

/* ribbon genel alan */
.hero-ribbon-wrap{
  position:absolute;
  left:0;
  right:0;
  bottom:-5px;
  transform:none;
  width:100%;
  height:96px;
  z-index:20;
  pointer-events:none;
}

/* beyaz ribbon */
.hero-ribbon-strip {
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 300px);
  height: 96px;
  background: #fff;
  border-radius: 0 34px 0 0;
  box-shadow: 0 -18px 44px rgb(0 0 0 / 18%);
  overflow: visible;
  z-index: 2;
}

/* sağdaki kıvrım bloğu */
.hero-ribbon-curl{
  position:absolute;
  top:0;
  right:0;
  width:84px;
  height:84px;
  background:#fff;
  border-bottom-left-radius:28px;
  display:block;
  z-index:5;
  overflow:visible;
  pointer-events:none;
}

/* üst kıvrım */
.hero-ribbon-curl::before {
    content: "";
    position: absolute;
    left: -28px;
    top: 62px;
    width: 150px;
    height: 64px;
    background: transparent;
    border-top-right-radius: 82px;
    box-shadow: 22px -62px 0 0 #fff;
    z-index: 8;
    pointer-events: none;
}

/* alt kıvrım */
.hero-ribbon-curl::after {
    content: "";
    position: absolute;
    right: -231px;
    top: 8px;
    width: 180px;
    height: 88px;
    background: transparent;
    border-bottom-left-radius: 82px;
    box-shadow: -105px 38px 0 0 #fff;
    z-index: 10;
    pointer-events: none;
}

/* swiper alanı */
.hero-ribbon-swiper{
  position:relative;
  z-index:99;
  width:calc(100% - 84px);
  height:100%;
  overflow:hidden;
  padding:0 26px;
  display:flex;
  align-items:center;
  pointer-events:auto;

  -webkit-mask-image:linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image:linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.hero-ribbon-swiper:active{
  cursor:grabbing;
  cursor:-webkit-grabbing;
}
.hero-ribbon-swiper .swiper-wrapper{
  align-items:center;
}
.hero-ribbon-swiper .swiper-slide{
  width:auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* marquee alanı */


.hero-ribbon-logo{
  flex:0 0 auto;
  width:96px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-ribbon-logo img{
  max-width:96px;
  max-height:36px;
  width:auto;
  height:auto;
  object-fit:contain;
  filter:grayscale(1);
  opacity:.88;
  transition:.25s ease;
}

.hero-ribbon-logo:hover img{
  filter:grayscale(0);
  opacity:1;
  transform:translateY(-2px);
}



/* sağdaki ok alanı */
.hero-ribbon-actions{
  position:absolute;
  right:18px;
  bottom:0;
  width:128px;
  height:96px;
  z-index:6;
  pointer-events:none;
}

/* ribbon okları */
.hero .arrow.ribbon-arrow{
  position:absolute;
  top:auto;
  bottom:18px;
  transform:none;
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    backdrop-filter: blur(10px);
  -webkit-backdrop-filter:blur(10px);
  color:#fff;
  z-index:7;
  pointer-events:auto;
}

.hero .arrow.prev.ribbon-arrow{
  left:0;
  right:auto;
}

.hero .arrow.next.ribbon-arrow{
  right:0;
  left:auto;
}

.hero .arrow.ribbon-arrow:hover{
  background:rgba(255,255,255,.16);
  transform:translateY(-2px);
}

.hero .arrow.ribbon-arrow i{
  font-size:17px;
}

/* eski ortadaki oklar gizlensin */
.hero > .arrow:not(.ribbon-arrow){
  display:none !important;
}

/* tablet */
@media (max-width: 920px){
	.hero-ribbon-curl::before {
    content: "";
    position: absolute;
    left: -28px;
    top: 62px;
    width: 150px;
    height: 64px;
    background: transparent;
    border-top-right-radius: 82px;
    box-shadow: 22px -62px 0 0 #fff;
    z-index: 8;
    pointer-events: none;
}
  .hero{
    padding-bottom:0px;
  }

  .hero-ribbon-wrap{
    left:0;
    right:0;
    width:100%;
    height:78px;
  }

  .hero-ribbon-strip{
    left:0;
    width:calc(100% - 126px);
    height:78px;
    border-radius:0 26px 0 0;
  }

  .hero-ribbon-curl{
    width:64px;
    height:64px;
    border-bottom-left-radius:22px;
  }

  .hero-ribbon-curl::after {
    content: "";
    position: absolute;
    right: -223px;
    bottom: -13px;
    width: 180px;
    height: 72px;
    background: transparent;
    border-bottom-left-radius: 80px;
    box-shadow: -95px 30px 0 0 #fff;
    z-index: 10;
    pointer-events: none;
}



  .hero-ribbon-swiper{
    width:calc(100% - -64px);
    padding:0 16px;
  }

 

.hero-ribbon-logo{
  width:72px;
  height:30px;
}

.hero-ribbon-logo img{
  max-width:72px;
  max-height:24px;
}

  .hero-ribbon-actions{
    right:12px;
    width:92px;
    height:78px;
  }

  .hero .arrow.ribbon-arrow{
    width:40px;
    height:40px;
    bottom:14px;
  }

  .hero .arrow.ribbon-arrow i{
    font-size:14px;
  }
}

/* telefon */
@media (max-width: 640px){
  .hero-ribbon-wrap{
    width:100%;
  }

  .hero-ribbon-strip{
    left:0;
    width:calc(100% - 205px);
  }

  

.hero-ribbon-logo{
  width:64px;
  height:28px;
}

.hero-ribbon-logo img{
  max-width:64px;
  max-height:22px;
}
.hero-ribbon-curl::after {
    content: "";
    position: absolute;
    right: -246px;
    bottom: -14px;
    width: 180px;
    height: 72px;
    background: transparent;
    border-bottom-left-radius: 80px;
    box-shadow: -95px 30px 0 0 #fff;
    z-index: 10;
    pointer-events: none;
}

  .hero-ribbon-swiper{
    width:calc(100% - -64px);
    padding:0 16px;
  }

  

}
/* item yapısı */
.hero-ribbon-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 32px;
  color:#666;
  font-weight:600;
  font-size:.9rem;
  white-space:nowrap;
  transition:.25s ease;
}

/* ikon */
.hero-ribbon-item i{
  font-size:20px;
  color:#018ad8;
  transition:.25s;
}

/* hover */
.hero-ribbon-item:hover{
  color:#111; cursor: pointer;
}

.hero-ribbon-item:hover i{
  color:var(--accent);
  transform:scale(1.15);
}

/* separator */
.hero-ribbon-item + .hero-ribbon-item{
  border-left:1px solid rgba(0,0,0,.15);
}
.hero-ribbon-swiper .swiper-slide + .swiper-slide .hero-ribbon-item{
  border-left:1px solid;
  height: 60px;
  border-image:linear-gradient(
    to bottom,
    transparent,
    rgba(0,0,0,.22),
    transparent
  ) 1;
}

.hero-ribbon-item:hover img{
  filter:none;
  opacity:1;
  transform:scale(1.08);
}
/* ikon */
.hero-ribbon-item img{
  width:26px;
  height:26px;
  object-fit:contain;
  filter:grayscale(1) brightness(.6);
  opacity:.7;
  transition:.25s ease;
}

/* ARADAKİ ÇİZGİ */
.hero-ribbon-item::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:22px;
  background:rgba(0,0,0,.15);
}

/* SON ELEMANDA ÇİZGİ OLMASIN */
.hero-ribbon-item:last-child::after{
  display:none;
}
.ks-landing{
  position:relative;
  padding:90px 0 110px;
  background:#f6f7fb;
  overflow:hidden;
}

.ks-landing::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 10% 10%, rgba(1,138,216,.05), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(0,52,114,.05), transparent 28%);
  pointer-events:none;
}

.ks-container{
  position:relative;
  z-index:2;
  width:min(1320px, calc(100% - 34px));
  margin:0 auto;
}

.ks-mini-title{
  display:inline-block;
  font-size:13px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#018ad8;
  margin-bottom:14px;
}

.ks-hero{
  margin-bottom:34px;
}

.ks-hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:34px;
  align-items:center;
}

.ks-hero-content h1{
  margin:0 0 18px;
  font-size:clamp(34px, 4vw, 42px);
  line-height:1.04;
  letter-spacing:-.03em;
  color:#101522;
}

.ks-hero-content p{
  margin:0 0 16px;
  font-size:17px;
  line-height:1.9;
  color:#5d6677;
}

.ks-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.ks-btn{
  min-width:190px;
  height:56px;
  padding:0 24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-weight:700;
  transition:.25s ease;
}

.ks-btn-primary{
  background:linear-gradient(135deg, #018ad8, #003472);
  color:#fff;
  box-shadow:0 16px 40px rgba(0,52,114,.18);
}

.ks-btn-primary:hover{
  transform:translateY(-2px);
}

.ks-btn-secondary{
  background:#fff;
  color:#111827;
  border:1px solid rgba(0,0,0,.1);
}

.ks-btn-secondary:hover{
  background:#111827;
  color:#fff;
}

.ks-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}

.ks-badges span{
  padding:10px 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  color:#243041;
  font-size:14px;
  font-weight:600;
}

.ks-hero-media{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
}

.ks-hero-main,
.ks-hero-side img,
.ks-about-image,
.ks-service-card img,
.ks-gallery-item{
  border-radius:28px;
  overflow:hidden;
}

.ks-hero-main{
  min-height:560px;
  box-shadow:0 20px 50px rgba(0,0,0,.10);
}

.ks-hero-main img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ks-hero-side{
  display:grid;
  grid-template-rows:1fr 1fr;
  gap:18px;
}

.ks-hero-side img{
  width:100%;
  height:271px;
  object-fit:cover;
  display:block;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.ks-feature-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  margin:36px 0 60px;
}

.ks-feature-card{
  position: relative;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.05);
  overflow: hidden;
}

/* pattern arka plan */
.ks-feature-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/bg-quote.webp") center/cover no-repeat;
  opacity: 0.6;
  z-index: 0;
}

/* üstüne hafif beyaz katman */
.ks-feature-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.04);
  z-index: 1;
}

/* içerik üstte */
.ks-feature-card > *{
  position: relative;
  z-index: 2;
}

.ks-feature-card h3{
  margin:0 0 14px;
  font-size:24px; font-weight:300;
  color:#101522;
}

.ks-feature-card p{
  margin:0;
  font-size:16px;
  line-height:1.8;
  color:#667085;
}

.ks-about{
  margin:0 0 60px;
}

.ks-about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
}

.ks-about-image{
  min-height:auto;
  box-shadow:0 22px 60px rgba(0,0,0,.10);
}
.service-about-rings {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 240px;
    height: 240px;
    background: url(../img/pattern-bg.webp) no-repeat center center / contain;
    opacity: .18;
    pointer-events: none;
}.service-about-dots {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 300px;
    height: 300px;
    background: url(../img/pattern-bg.webp) no-repeat center center / contain;
    opacity: .18;
    pointer-events: none;
}
.ks-about-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ks-about-content{
	position:relative;
  background:#fff;
  border-radius:28px;
  padding:38px;
  box-shadow:0 18px 40px rgba(0,0,0,.06);
}

.ks-about-content h2,
.ks-section-head h2,
.ks-content-box h2,
.ks-cta-box h2{
  margin:0 0 18px;
  font-size:clamp(30px, 3.2vw, 28px);
  line-height:1.08;
  color:#000;
}
.ks-about-content h3, .ks-section-head h3, .ks-content-box h3, .ks-cta-box h3 {
    margin: 0 0 18px;
    font-size: clamp(30px, 3.2vw, 38px);
    line-height: 1.08;
    color: #fff;
}

.ks-about-content p,
.ks-section-head p,
.ks-content-box p,
.ks-cta-box p{
  margin:0 0 14px;
  font-size:17px;
  line-height:1.9;
  color:#667085;
}

.ks-stats{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
  margin:0 0 60px;
}

.ks-stat-item{
  background:linear-gradient(135deg, #0f1729, #1c2945);
  color:#fff;
  border-radius:24px;
  padding:28px;
  box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.ks-stat-item strong{
  display:block;
  font-size:40px;
  line-height:1;
  margin-bottom:10px;
}

.ks-stat-item span{
  color:rgba(255,255,255,.82);
  font-size:15px;
  line-height:1.6;
}

.ks-section-head{
  max-width:860px;
  margin:0 auto 30px;
  text-align:center;
}

.ks-section-head-space{
  margin-top:70px;
}

.ks-service-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.ks-service-card{
  background:#fff;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.06);
  border:1px solid rgba(0,0,0,.05);
  transition:.25s ease;
}

.ks-service-card:hover{
  transform:translateY(-4px);
}

.ks-service-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}

.ks-service-card h3{
  margin:22px 22px 12px;
  font-size:24px;
  color:#101522;
}

.ks-service-card p{
  margin:0 22px 24px;
  font-size:16px;
  line-height:1.8;
  color:#667085;
}

.ks-district-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.ks-district-card{
  background:#fff;
  border-radius:22px;
  padding:24px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 12px 30px rgba(0,0,0,.05);
  transition:.25s ease;
}

.ks-district-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.09);
}

.ks-district-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.3;
  color:#101522;
}

.ks-district-card p{
  margin:0;
  font-size:15px;
  line-height:1.8;
  color:#667085;
}

.ks-content-box{position: relative;
  margin-top:70px;
  background:#fff;
  border-radius:28px;
  padding:42px;
  box-shadow:0 20px 50px rgba(0,0,0,.06);
}

.ks-gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.ks-gallery-item{
  display:block;
  position:relative;
  aspect-ratio:1 / 1;
  box-shadow:0 14px 35px rgba(0,0,0,.08);
}

.ks-gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}

.ks-gallery-item:hover img{
  transform:scale(1.06);
}

.ks-faq{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 18px; background-color: transparent;
}

.ks-faq-item{
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
  overflow: hidden;
  transition: .25s ease;
}

.ks-faq-item[open]{
  border-color: #018ad8;
  box-shadow: 0 16px 40px rgba(1,138,216,.10);
}

.ks-faq-item summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  font-size: 20px;
  font-weight: 700;
  color: #101522;
  background: #ffffff;
}

.ks-faq-item summary::-webkit-details-marker{
  display: none;
}

.ks-faq-item summary span:first-child{
  flex: 1;
}

.ks-faq-content{
  padding: 0 26px 24px;
  background: #ffffff;
}

.ks-faq-content p{
  margin: 0;
  color: #667085;
  line-height: 1.8;
  font-size: 16px;
}

/* + / - ikon */
.ks-faq-toggle{
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3f6fb;
  border: 1px solid rgba(0,0,0,.08);
  transition: .25s ease;
}

.ks-faq-toggle::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #101522;
  transform: translate(-50%, -50%);
  border-radius: 999px;
}

.ks-faq-toggle::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 16px;
  background: #101522;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  transition: .25s ease;
}

.ks-faq-item[open] .ks-faq-toggle{
  background: #018ad8;
  border-color: #018ad8;
}

.ks-faq-item[open] .ks-faq-toggle::before{
  background: #ffffff;
}

.ks-faq-item[open] .ks-faq-toggle::after{
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.ks-faq-item summary:hover .ks-faq-toggle{
  transform: scale(1.06);
}

@media (max-width: 575px){
  .ks-faq-item summary{
    padding: 20px 18px;
    font-size: 17px;
  }

  .ks-faq-content{
    padding: 0 18px 20px;
  }

  .ks-faq-content p{
    font-size: 15px;
    line-height: 1.7;
  }

  .ks-faq-toggle{
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }
}

.ks-cta-box{
  margin-top:70px;
  background:linear-gradient(135deg, #0f1729, #1f3156);
  border-radius:30px;
  padding:42px;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.ks-cta-box h2{
  color:#fff;
}

.ks-cta-box p{
  color:rgba(255,255,255,.82);
  margin-bottom:0;
}

.ks-cta-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

@media (max-width:1199px){
  .ks-hero-grid,
  .ks-about-grid{
    grid-template-columns:1fr;
  }

  .ks-feature-grid,
  .ks-service-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .ks-district-grid,
  .ks-gallery-grid{
    grid-template-columns:repeat(3, 1fr);
  }

  .ks-stats{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:767px){
  .ks-landing{
    padding:70px 0 90px;
  }

  .ks-container{
    width:calc(100% - 24px);
  }

  .ks-hero-media,
  .ks-feature-grid,
  .ks-service-grid,
  .ks-district-grid,
  .ks-gallery-grid,
  .ks-stats{
    grid-template-columns:1fr;
  }

  .ks-hero-main{
    min-height:320px;
  }

  .ks-hero-side img{
    height:220px;
  }

  .ks-about-image{
    min-height:320px;
  }

  .ks-about-content,
  .ks-content-box,
  .ks-cta-box{
    padding:26px 20px;
  }

  .ks-cta-box{
    flex-direction:column;
    align-items:flex-start;
  }

  .ks-btn{
    width:100%;
    min-width:100%;
  }

  .ks-faq-item summary{
    font-size:18px;
  }
}
.klima-top-hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d1522;
}

.klima-top-hero__bg{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.klima-top-hero__bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
}

.klima-top-hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8,15,28,.88) 0%, rgba(8,15,28,.78) 34%, rgba(8,15,28,.36) 62%, rgba(8,15,28,.22) 100%),
    linear-gradient(180deg, rgba(8,15,28,.12) 0%, rgba(8,15,28,.28) 100%);
}

.klima-top-hero__container{
  position: relative;
  z-index: 3;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 110px;
}

.klima-top-hero__content{
  max-width: 760px;
}

.klima-top-hero__eyebrow{
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.klima-top-hero__content h1{
      margin: 22px 0 22px;
  font-size: clamp(42px, 6vw, 62px);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 100;
  color: #fff;
}

.klima-top-hero__content p{
  margin: 0;
  max-width: 700px;
  font-size: 20px;
  line-height: 1.9;
  color: rgba(255,255,255,.82);
}

.klima-top-hero__actions{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.klima-top-hero__btn{
  min-width: 190px;
  height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  transition: .28s ease;
}
.klima-top-hero__btn i {
    margin-right: 8px;  /* icon ile yazı arası boşluk */
    font-size: 20px;
}
.klima-top-hero__btn--primary{
  background: linear-gradient(135deg, #008ae6, #003e88);
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 76, 161, .28);
}

.klima-top-hero__btn--primary:hover{
  transform: translateY(-3px);
}

.klima-top-hero__btn--secondary{
  color: #fff;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid #fff;
    backdrop-filter: blur(8px);
}

.klima-top-hero__btn--secondary:hover{
  background: rgba(255,255,255,.14);
  transform: translateY(-3px);
}

.klima-top-hero__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.klima-top-hero__tags span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
    border: 1px solid #fff;
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    font-weight: 400;
  
}

@media (max-width: 991px){
  .klima-top-hero{
    min-height: auto;
  }

  .klima-top-hero__container{
    width: calc(100% - 24px);
    padding: 110px 0 90px;
  }

  .klima-top-hero__content h1{
    font-size: clamp(36px, 9vw, 62px);
    line-height: 1.02;
  }

  .klima-top-hero__content p{
    font-size: 17px;
    line-height: 1.75;
  }
}

@media (max-width: 575px){
  .klima-top-hero__container{
    padding: 95px 0 75px;
  }

  .klima-top-hero__eyebrow{
    font-size: 11px;
    padding: 8px 13px;
  }

  .klima-top-hero__content h1{
    font-size: 34px;
  }

  .klima-top-hero__content p{
    font-size: 15px;
    line-height: 1.7;
  }

  .klima-top-hero__actions{
    gap: 12px;
  }

  .klima-top-hero__btn{
    width: 100%;
    min-width: 100%;
    height: 54px;
    font-size: 15px;
  }

  .klima-top-hero__tags span{
    font-size: 13px;
    min-height: 40px;
    padding: 9px 14px;
  }
}
.klima-top-hero__container{
  position: relative;
}

/* sağdaki dikey ilçe linkleri */
.klima-top-hero__side-links{
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-40%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.klima-top-hero__side-links a{
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: .25s ease;
  position: relative;
}

.klima-top-hero__side-links a::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 2px;
  height: 34px;
  background: rgba(255,255,255,.16);
  border-radius: 999px;
}

.klima-top-hero__side-links a:last-child::after{
  display: none;
}

.klima-top-hero__side-links a:hover{
  color: #fff;
  transform: rotate(180deg) translateY(-4px);
}

/* sağ alttaki istatistik kutuları */
.klima-top-hero__stats{
  position: absolute;
  right: 60px;
  bottom: 46px;
  z-index: 5;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 520px;
}

.klima-top-hero__stat{
  min-width: 145px;
  padding: 16px 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

.klima-top-hero__stat strong{
  display: block;
  color: #000;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 8px;
}

.klima-top-hero__stat span{
  display: block;
  color: #000;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
}

/* aşağı kaydır oku */
.klima-top-hero__scroll{
  position: absolute;
  left: 0;
  bottom: 46px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.klima-top-hero__scroll-text{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.86);
}

.klima-top-hero__scroll-icon{
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.klima-top-hero__scroll-icon::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 11px;
  width: 2px;
  height: 12px;
  background: #fff;
  transform: translateX(-50%);
  border-radius: 999px;
}

.klima-top-hero__scroll-icon::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateX(-50%) rotate(45deg);
}

.klima-top-hero__scroll:hover .klima-top-hero__scroll-icon{
  transform: translateY(3px);
  transition: .25s ease;
}

/* hero altında boşluk çakışmasın diye */
.klima-top-hero{
  padding-bottom: 40px;
}

/* tablet */
@media (max-width: 1199px){
  .klima-top-hero__side-links{
    right: 0;
    gap: 42px;
  }

  .klima-top-hero__stats{
    right: 20px;
    bottom: 30px;
    max-width: 420px;
  }

  .klima-top-hero__stat{
    min-width: 130px;
  }
}

/* mobil */
@media (max-width: 991px){
  .klima-top-hero__side-links{
    display: none;
  }

  .klima-top-hero__stats{
    position: static;
    margin-top: 28px;
    justify-content: flex-start;
    max-width: 100%;
  }

  .klima-top-hero__scroll{
    position: static;
    margin-top: 26px;
  }

  .klima-top-hero{
    padding-bottom: 0;
  }
}

@media (max-width: 575px){
  .klima-top-hero__stats{
    gap: 10px;
  }

  .klima-top-hero__stat{
    width: 100%;
    min-width: 100%;
    border-radius: 16px;
    padding: 14px 16px;
  }

  .klima-top-hero__stat strong{
    font-size: 24px;
  }

  .klima-top-hero__scroll-text{
    font-size: 12px;
  }

  .klima-top-hero__scroll-icon{
    width: 38px;
    height: 38px;
  }
}
.arkasi{ position:relative;}
.arkasi2 {
    position: relative;
    background-color: #e1e4e5 !important;
    margin-top: -1px;
}
.footer-wave-svg {
    position: relative;
    top: 72px;
    z-index: 4;
    display: block;
} 
.footer-wave-svg2 {
    position: relative;
    top: 2px;
    z-index: 4;
    display: block;
}
.footer-wave-svg3 {
    position: relative;
    top: 2px;
    z-index: 4;
    display: block;
}
.service-about-dot {
    position: absolute;
    right: -5px;
    bottom: -15px;
    width: 240px;
    height: 240px;
    background: url(../img/pattern-dots.webp) no-repeat center center / contain;
    opacity: .18;
    pointer-events: none;
}
.about-section{
    position: relative;
    padding: 100px 0;
    background: #e1e4e5;
    overflow: hidden;
}
.about-section::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url("../img/about_bg_4.webp");
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.about-container{
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;position: relative; z-index:2;
}

.about-left{
    position: relative;
}

.about-image-wrap{
    position: relative;
    border-radius: 34px;
    overflow: visible;
}

.about-image-wrap img{
    width: 100%;
    display: block;
    border-radius: 34px;
    object-fit: cover;
    
}

/* EXPERIENCE BOX */
.experience-box{
    position: absolute;
    left: -68px;
    bottom: 40px;
    width: 210px;
    height: 230px;
    background: #028de6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
    box-shadow: 0 22px 45px rgba(2, 141, 230, .28);

    clip-path: polygon(
        50% 0%,
        100% 18%,
        100% 82%,
        50% 100%,
        0% 82%,
        0% 18%
    );
}

.experience-box::before{
    content: "";
    position: absolute;
    inset: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.03));
    clip-path: polygon(
        50% 0%,
        100% 18%,
        100% 82%,
        50% 100%,
        0% 82%,
        0% 18%
    );
    z-index: 0;
}

.experience-box::after{
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,.16), transparent 38%),
      radial-gradient(circle at 70% 70%, rgba(255,255,255,.09), transparent 32%);
    z-index: 0;
    clip-path: polygon(
        50% 0%,
        100% 18%,
        100% 82%,
        50% 100%,
        0% 82%,
        0% 18%
    );
}

.experience-box strong,
.experience-box > span{
    position: relative;
    z-index: 2;
}

.experience-box{
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.experience-box strong{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    font-size: 78px;
    font-weight: 800;
    color: rgba(255,255,255,.95);
    letter-spacing: -2px;
}

.experience-box strong em{
    font-style: normal;
    font-size: 28px;
    line-height: 1;
    margin-top: 10px;
    margin-left: 4px;
    color: rgba(255,255,255,.92);
}

.experience-box > span{
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
}

/* RIGHT */
.about-right .about-mini{
    display: inline-block;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 700;
    color: #028de6;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.about-right h2{
    margin: 0 0 18px;
    font-size: 44px;
    line-height: 1.18;
    font-weight: 800;
    color: #101828;
}

.about-right p{
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 1.8;
    color: #000;
}

.about-list{
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
}

.about-list li{
    font-size: 16px;
    font-weight: 600;
    color: #172033;
}

.about-bottom{
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-primary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 56px;
    padding: 0 26px;
    background: #028de6;
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    transition: .3s ease;
    box-shadow: 0 12px 25px rgba(2,141,230,.22);
}

.btn-primary:hover{
    transform: translateY(-2px);
    background: #027dcb;
}

.call-box{
    display: flex;
    align-items: center;
    gap: 14px;
}

.call-icon{
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #028de6;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
    z-index: 1;
}

/* 1. halka */
.call-icon::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(2,141,230,0.5);
    animation: pulseRing 2.2s infinite;
    z-index: -1;
}

/* 2. halka (gecikmeli) */
.call-icon::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(2,141,230,0.35);
    animation: pulseRing 2.2s infinite;
    animation-delay: .6s;
    z-index: -2;
}

/* animasyon */
@keyframes pulseRing{
    0%{
        transform: scale(1);
        opacity: 0.6;
    }
    70%{
        transform: scale(2.2);
        opacity: 0;
    }
    100%{
        transform: scale(2.2);
        opacity: 0;
    }
}
.about-list li i{
    font-size: 28px;
    font-weight: 600;
    color: #028de6;
}

.call-box span{
    display: block;
    font-size: 13px;
    color: #6c7480;
    margin-bottom: 4px;
}

.call-box strong{
    display: block;
    font-size: 22px;
    color: #101828;
    line-height: 1.2;
}

/* TABLET */
@media (max-width: 991px){
    .about-container{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-right h2{
        font-size: 36px;
    }

    .experience-box{
        left: -25px;
        bottom: 25px;
        width: 180px;
        height: 198px;
    }

    .experience-box strong{
        font-size: 62px;
    }

    .experience-box strong em{
        font-size: 22px;
        margin-top: 8px;
    }

    .experience-box > span{
        font-size: 15px;
    }
}

/* MOBILE */
@media (max-width: 767px){
    .about-section{
        padding: 70px 0;
    }

    .about-container{
        width: min(100% - 24px, 1200px);
    }

    .about-image-wrap{
        overflow: visible;
        padding-bottom: 25px;
    }

    .experience-box{
        position: absolute;
        left: 12px;
        bottom: -18px;
        width: 132px;
        height: 145px;
    }

    .experience-box::before{
        inset: 8px;
    }

    .experience-box strong{
        font-size: 42px;
        letter-spacing: -1px;
    }

    .experience-box strong em{
        font-size: 16px;
        margin-top: 4px;
        margin-left: 2px;
    }

    .experience-box > span{
        font-size: 11px;
        line-height: 1.25;
    }

    .about-right h2{
        font-size: 28px;
    }

    .about-right p{
        font-size: 15px;
        line-height: 1.7;
    }

    .about-list{
        grid-template-columns: 1fr;
    }

    .call-box strong{
        font-size: 18px;
    }

    .btn-primary{
        width: 100%;
    }
}
.gt-footer{
    position: relative;
    background: #121f59;
    color: #fff;
    overflow: hidden;
}

.gt-footer a{
    text-decoration: none;
}

.gt-footer-top{
    background: #0f1b55;
    padding: 38px 0;
    position: relative;
    z-index: 2;
}

.gt-footer-top-inner{
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1.4fr auto;
    align-items: center;
    gap: 28px;
}

.gt-footer-news-title{
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    color: #fff;
}

.gt-footer-news-form{
    display: flex;
    align-items: stretch;
    max-width: 460px;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

.gt-footer-news-form input{
    flex: 1;
    border: 0;
    outline: none;
    min-height: 56px;
    padding: 0 18px;
    font-size: 15px;
    color: #1a1a1a;
    background: #f5f5f5;
}

.gt-footer-news-form button{
    border: 0;
    outline: none;
    height: 56px;
    padding: 0 22px;
    background: linear-gradient(135deg, #82ceff, #028de6);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: .3s ease;
    white-space: nowrap;
}

.gt-footer-news-form button:hover{
    filter: brightness(1.05);
}

.gt-footer-since{
    justify-self: end;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.28);
    text-transform: uppercase;
    padding-left: 36px;
    border-left: 1px solid rgba(255,255,255,.15);
}

.gt-footer-main{
    position: relative;
    padding: 72px 0 0;
    background: #1b275f;
    border-top-left-radius: 48px;
    overflow: hidden;
}

.gt-footer-container{
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gt-footer-grid{
    display: grid;
    grid-template-columns: 1.2fr .95fr .95fr 1.15fr;
    gap: 34px;
    padding-bottom: 48px;
}

.gt-footer-col{
    position: relative;
    min-width: 0;
}

.gt-footer-col:not(:first-child){
    padding-left: 34px;
}

.gt-footer-col:not(:first-child)::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 230px;
    background: rgba(255,255,255,.12);
}

.gt-footer-logo{
    display: inline-block;
    margin-bottom: 24px;
}

.gt-footer-logo img{
    max-width: 320px;
    width: 100%;
    display: block;
}

.gt-footer-text{
    margin: 0 0 28px;
    max-width: 320px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.82);
}

.gt-footer-social{
    display: flex;
    align-items: center;
    gap: 12px;
}

.gt-footer-social a{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,.09);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 18px;
    transition: .3s ease;
}

.gt-footer-social a:hover{
    background: linear-gradient(135deg, #82ceff, #028de6);
    transform: translateY(-3px);
}

.gt-footer-title{
    margin: 0 0 26px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gt-footer-title i{
    color: #82ceff;
    font-size: 18px;
}

.gt-footer-links{
    list-style: none;
    margin: 0;
    padding: 0;
}

.gt-footer-links li{
    margin-bottom: 15px;
}

.gt-footer-links a{
    position: relative;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    padding-left: 18px;
    transition: .25s ease;
    display: inline-block;
}

.gt-footer-links a::before{
    content: "\F285";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 13px;
    color: #fff;
    transition: .25s ease;
}

.gt-footer-links a:hover{
    color: #028de6;
    transform: translateX(4px);
}

.gt-footer-links a:hover::before{
    color: #028de6;
}

.gt-footer-contact-list{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.gt-contact-item{
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.gt-contact-icon{
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.18);
    color: #82ceff;
    display: grid;
    place-items: center;
    font-size: 18px;
    margin-top: 2px;
}

.gt-contact-item p{
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255,255,255,.88);
}

.gt-contact-item p:last-child{
    margin-bottom: 0;
}

.gt-contact-item a{
    color: rgba(255,255,255,.88);
    transition: .25s ease;
}

.gt-contact-item a:hover{
    color: #028de6;
}

.gt-footer-bottom{
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.gt-footer-copy{
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,.82);
}

.gt-footer-copy span{
    color: #82ceff;
}

.gt-footer-bottom-links{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.gt-footer-bottom-links a{
    position: relative;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    transition: .25s ease;
}

.gt-footer-bottom-links a:not(:last-child)::after{
    content: "";
    width: 6px;
    height: 2px;
    border-radius: 10px;
    background: #82ceff;
    display: inline-block;
    margin-left: 14px;
    vertical-align: middle;
}

.gt-footer-bottom-links a:hover{
    color: #028de6;
}

.gt-footer-top-btn{
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #82ceff, #028de6);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
    z-index: 5;
    box-shadow: 0 16px 28px rgba(0,0,0,.22);
    transition: .3s ease;
}

.gt-footer-top-btn:hover{
    transform: translateY(-4px);
    color: #fff;
}

.gt-footer-pattern{
    position: absolute;
    pointer-events: none;
    opacity: .08;
    z-index: 1;
}

.gt-footer-pattern-left{
    left: -80px;
    bottom: 80px;
    width: 240px;
    height: 240px;
    border: 8px solid #028de6;
    border-radius: 50%;
}

.gt-footer-pattern-left::before,
.gt-footer-pattern-left::after{
    content: "";
    position: absolute;
    border: 8px solid #028de6;
    border-radius: 50%;
}

.gt-footer-pattern-left::before{
    inset: 28px;
}

.gt-footer-pattern-left::after{
    inset: 58px;
}

.gt-footer-pattern-right{
    right: 18px;
    top: 8px;
    width: 120px;
    height: 220px;
    opacity: .07;
}

.gt-footer-pattern-right::before{
    content: "\F497";
    font-family: "bootstrap-icons";
    position: absolute;
    inset: 0;
    font-size: 180px;
    color: #fff;
    transform: rotate(-18deg);
}

@media (max-width: 1199px){
    .gt-footer-top-inner{
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .gt-footer-since{
        justify-self: start;
        padding-left: 0;
        border-left: 0;
    }

    .gt-footer-grid{
        grid-template-columns: 1fr 1fr;
    }

    .gt-footer-col:not(:first-child)::before{
        display: none;
    }

    .gt-footer-col:not(:first-child){
        padding-left: 0;
    }
}

@media (max-width: 767px){
    .gt-footer-top{
        padding: 28px 0;
    }

    .gt-footer-top-inner,
    .gt-footer-container{
        width: min(100% - 24px, 1280px);
    }

    .gt-footer-news-title{
        font-size: 18px;
    }

    .gt-footer-news-form{
        flex-direction: column;
        border-radius: 14px;
        overflow: hidden;
        max-width: 100%;
    }

    .gt-footer-news-form input,
    .gt-footer-news-form button{
        width: 100%;
    }

    .gt-footer-since{
        font-size: 22px;
    }

    .gt-footer-main{
        padding-top: 54px;
        border-top-left-radius: 28px;
    }

    .gt-footer-grid{
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .gt-footer-logo img{
        max-width: 210px;
    }

    .gt-footer-text,
    .gt-footer-links a,
    .gt-contact-item p{
        font-size: 16px;
    }

    .gt-footer-title{
        font-size: 20px;
        margin-bottom: 18px;
    }

    .gt-footer-bottom{
        flex-direction: column;
        align-items: flex-start;
    }

    .gt-footer-top-btn{
        width: 48px;
        height: 48px;
        right: 16px;
        bottom: 16px;
    }
}
.marquee-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    margin-top: 10px;
}

.marquee {
    margin-top: 25px;
    z-index: 2;
    position: relative;
    display: flex;
    width: max-content;
    animation: marqueeMove 335s linear infinite;
}

.marquee span {
    font-size: 120px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    margin-right: 80px;
    color: #e9eadf;
    opacity: 0.6;
}

.golge {
    box-shadow: 0 30px 205px rgb(0 0 0 / 92%);
    width: 100%;
    height: 80px;
    background: none;
    z-index: 9;
    margin-top: 90px;
    position: relative;
}

/* @keyframes animasyonu ekliyoruz */
@keyframes marqueeMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.contact-hero{
  position:relative;
  overflow:hidden;
  min-height:520px;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(135deg, #062e5f 0%, #0b3f80 50%, #0f58b3 100%);
}

.contact-hero__bg{
  position:absolute;
  inset:0;
  background:
    url("img/footer-pattern-dots-2.webp") center/cover no-repeat;
  opacity:.10;
}

.contact-hero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(6,46,95,.92) 0%, rgba(6,46,95,.75) 45%, rgba(6,46,95,.45) 100%);
}

.contact-hero__container{
  position:relative;
  z-index:2;
  width:min(1280px, calc(100% - 40px));
  margin:0 auto;
  padding:110px 0;
}

.contact-hero__content{
  max-width:760px;
  color:#fff;
}

.contact-mini-title{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.84rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#9fd0ff;
  margin-bottom:18px;
}

.contact-hero__content h1{
  margin:0 0 18px;
  font-size:clamp(2.3rem, 5vw, 4.4rem);
  line-height:1.05;
  font-weight:800;
  color:#fff;
}

.contact-hero__content h1 strong{
  color:#fff;
}

.contact-hero__content p{
  margin:0;
  max-width:700px;
  font-size:1.08rem;
  line-height:1.8;
  color:rgba(255,255,255,.88);
}

.contact-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:32px;
}

.contact-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:56px;
  padding:0 26px;
  border-radius:16px;
  text-decoration:none;
  font-weight:700;
  transition:.35s ease;
}

.contact-btn i{
  font-size:1.1rem;
}

.contact-btn--primary{
  background:#fff;
  color:#062e5f;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
}

.contact-btn--primary:hover{
  transform:translateY(-3px);
  color:#062e5f;
}

.contact-btn--secondary{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  backdrop-filter:blur(8px);
}

.contact-btn--secondary:hover{
  transform:translateY(-3px);
  color:#fff;
  background:rgba(255,255,255,.18);
}

.contact-hero__badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}

.contact-hero__badges span{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-size:.95rem;
}

.contact-main{
  position:relative;
  padding:100px 0 120px;
  background:#f4f7fb;
  overflow:hidden;
}

.contact-main::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(6,46,95,.08) 0%, rgba(6,46,95,0) 70%);
  top:-120px;
  left:-120px;
}

.contact-main::after{
  content:"";
  position:absolute;
  width:380px;
  height:380px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(15,88,179,.08) 0%, rgba(15,88,179,0) 70%);
  bottom:-120px;
  right:-100px;
}

.contact-container{
  position:relative;
  z-index:2;
  width:min(1280px, calc(100% - 40px));
  margin:0 auto;
}

.contact-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  align-items:stretch;
}

.contact-section-head{
  margin-bottom:28px;
}

.contact-section-head h2{
  margin:0 0 14px;
  font-size:clamp(1.8rem, 3vw, 2.8rem);
  line-height:1.15;
  color:#0f172a;
  font-weight:800;
}

.contact-section-head p{
  margin:0;
  color:#5b6474;
  line-height:1.8;
  font-size:1.02rem;
}

.contact-section-head--center{
  text-align:center;
  max-width:850px;
  margin:0 auto 28px;
}

.contact-card-list{
  display:grid;
  gap:18px;
}

.contact-card{
  display:flex;
  align-items:flex-start;
  gap:18px;
  padding:28px;
  border-radius:28px;
  background:#fff;
  box-shadow:0 18px 50px rgba(15,23,42,.08);
  border:1px solid rgba(15,23,42,.04);
}

.contact-card__icon{
  width:68px;
  height:68px;
  border-radius:22px;
  flex:0 0 68px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, #062e5f 0%, #0f58b3 100%);
  color:#fff;
  font-size:1.45rem;
  box-shadow:0 16px 26px rgba(6,46,95,.20);
}

.contact-card__content span{
  display:block;
  margin-bottom:8px;
  font-size:.86rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#0f58b3;
  font-weight:700;
}

.contact-card__content h3{
  margin:0 0 10px;
  font-size:1.3rem;
  line-height:1.3;
  color:#111827;
  font-weight:800;
}

.contact-card__content h3 a{
  color:inherit;
  text-decoration:none;
}

.contact-card__content p{
  margin:0;
  color:#616b7b;
  line-height:1.75;
}

.contact-highlight__box{
  height:100%;
  padding:34px;
  border-radius:32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.02)),
    linear-gradient(135deg, #062e5f 0%, #0b3f80 55%, #0f58b3 100%);
  color:#fff;
  box-shadow:0 24px 60px rgba(6,46,95,.20);
  position:relative;
  overflow:hidden;
}

.contact-highlight__box::before{
  content:"";
  position:absolute;
  top:-80px;
  right:-80px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
}

.contact-highlight__box h2{
  margin:0 0 14px;
  font-size:clamp(1.7rem, 2.8vw, 2.5rem);
  line-height:1.15;
  font-weight:800;
  color:#fff;
}

.contact-highlight__box p{
  margin:0 0 24px;
  color:rgba(255,255,255,.86);
  line-height:1.8;
}

.contact-districts{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}

.contact-districts span{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
  font-size:.94rem;
  color:#fff;
}

.contact-highlight__actions{
  margin-top:28px;
}

.contact-map-wrap{
  margin-top:34px;
}

.contact-map-box{
  overflow:hidden;
  height:520px;
  border-radius:32px;
  background:#fff;
  box-shadow:0 18px 50px rgba(15,23,42,.08);
  border:1px solid rgba(15,23,42,.04);
}

.contact-map-box iframe{
  display:block;
  width:100%;
  height:100%;
}

.contact-cta{
  margin-top:34px;
  padding:34px 36px;
  border-radius:32px;
  background:#fff;
  box-shadow:0 18px 50px rgba(15,23,42,.08);
  border:1px solid rgba(15,23,42,.04);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.contact-cta__content{
  max-width:760px;
}

.contact-cta__content h2{
  margin:0 0 12px;
  font-size:clamp(1.7rem, 3vw, 2.6rem);
  line-height:1.15;
  color:#111827;
  font-weight:800;
}

.contact-cta__content p{
  margin:0;
  color:#5e6877;
  line-height:1.8;
}

.contact-cta__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

@media (max-width: 1100px){
  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-cta{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 768px){
  .contact-hero{
    min-height:auto;
  }

  .contact-hero__container{
    padding:90px 0 80px;
  }

  .contact-card{
    padding:22px;
    border-radius:24px;
  }

  .contact-card__icon{
    width:58px;
    height:58px;
    flex-basis:58px;
    border-radius:18px;
    font-size:1.2rem;
  }

  .contact-highlight__box,
  .contact-map-box,
  .contact-cta{
    border-radius:24px;
  }

  .contact-map-box{
    height:420px;
  }

  .contact-cta{
    padding:26px 22px;
  }
}

@media (max-width: 576px){
  .contact-hero__actions,
  .contact-cta__actions{
    flex-direction:column;
    width:100%;
  }

  .contact-btn{
    width:100%;
  }

  .contact-card{
    flex-direction:column;
  }

  .contact-map-box{
    height:360px;
  }
}