/* catalog PAGE */
.catalog{
  background:#0b1f3a;
  color:#fff;
  
}

/* küçük sarı nokta */
.catalog-dot{
  width:6px;
  height:6px;
  border-radius:999px;
  background:#FEC233;
  display:inline-block;
}

/* HERO */
.catalog-hero{
  position: relative;
  background:#0b1f3a;
  padding: 40px 0 10px;
  overflow: visible;
}

/* sağ mesh: ekranın üstte görünen kısmını tamamen kaplasın */
/* sağ mesh: üstte görünen alanı TAM kaplasın */
.catalog-hero__mesh{
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  min-height: 100%;
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  opacity: .92;
  pointer-events: none;
  z-index: 1;
}


/* sol soft SCT: daha silik/geri planda */
.catalog-hero__soft{
  position: absolute;
  top: 120px;              /* <-- SCT yazısını aşağı indirir (gerekirse 30-70 arası oyna) */
  left: 0;
  width: 82%;
  height: calc(100% - 42px); /* <-- aşağı indiği kadar yükseklikten düş */
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  opacity: .02;           /* <-- biraz daha soluk */
  filter: blur(1.2px);    /* <-- biraz daha yumuşak */
  pointer-events: none;
  z-index: 0;
}



.catalog-hero__inner{
  width:min(1320px, calc(100% - 120px));
  margin:0 auto;
  position:relative;
  z-index:3;
  padding-top: 72px;
}

.catalog-hero__eyebrow{
  grid-column: 1 / -1;
  grid-row: 1;                  /* <-- 1. satır */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: .95;
  margin: 0;                    /* <-- boşluğu grid row-gap yönetiyor */
}

/* 3 kolon: başlık - sarı pill - metin */
.catalog-hero__layout{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  column-gap: clamp(40px, 6vw, 120px);
  row-gap: 20px;
  align-items: start;
  margin-top: 50px;
}

.catalog-hero__title{
  margin:0;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height:.95;
  font-weight:800;
  letter-spacing:.2px;
}

.catalog-hero__title span{ display:block; }

/* ortadaki sarı dekor */
.catalog-hero__badge{
  width: 120px;
  height: 60px;
  border-radius: 18px;
  background-color:#FEC233;
  background-size:cover;
  background-position:center;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  opacity:.98;
}

/* lead text */
.catalog-hero__lead{
  margin: 0;
  max-width: 470px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.88);
}

/* BAND */
.catalog .catalog-band{
  position: relative;
  background: #0b1f3a;
  padding: clamp(40px,4vw,70px) 0 clamp(50px, 6vw, 80px);
  z-index: 3;
}

.catalog .catalog-band__grid{
  position: relative;
  width: min(1320px, calc(100% - 120px));
  margin: 0 auto;

  display: flex;
  gap: 14px;
  align-items: stretch;
}

.catalog .catalog-band__img{
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: clamp(320px, 31vw, 470px);
  border-radius: 28px;
  min-width: 0;
}

/* sol görsel dar */
.catalog .catalog-band__img--left{
  flex: 0 0 33%;
}

/* sağ görsel geniş */
.catalog .catalog-band__img--right{
  flex: 1 1 auto;
}

/* sağ görsel overlay */
.catalog .catalog-band__img--right::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,24,46,.32);
}

/* ortadaki saat yazısı */
.catalog .catalog-band__centerText{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 2;
}

.catalog .catalog-band__hours{
  font-size: clamp(48px, 4.5vw, 86px);
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
  line-height: 1;
}

.catalog .catalog-band__days{
  margin-top: 14px;
  font-size: 20px;
  font-weight: 700;
  opacity: .96;
}

/* ISO */
.catalog .catalog-band__iso{
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 18px;
  z-index: 5;
}

.catalog .catalog-band__iso img{
  width: 78px;
  height: 78px;
  object-fit: contain;
  opacity: .95;
}

/* mobil */
@media (max-width: 900px){
  .catalog .catalog-band__grid{
    width: min(1320px, calc(100% - 40px));
    flex-direction: column;
  }

  .catalog .catalog-band__img--left,
  .catalog .catalog-band__img--right{
    flex: none;
  }
}

/* INFO */
.catalog-info{
  position:relative;
  background:#0b1f3a;
  padding: clamp(30px, 4vw, 60px) 0 clamp(70px, 8vw, 110px);
  overflow:hidden;
}

.catalog-info__bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:right center;
  opacity:.55;
  pointer-events:none;
}

.catalog-info__inner{
  width:min(1280px, calc(100% - 120px));
  margin:0 auto;
  position:relative;
  z-index:3;
}

.catalog-info__content{
  max-width: 560px;
}

.catalog-info__title{
  margin:0 0 26px 0;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height:1.35;
  font-weight: 400;
  color: rgba(255,255,255,.96);
}

.catalog-info__list{
  display:grid;
  gap:20px;
  margin-top:18px;
}

.catalog-hero__left{
  grid-column: 1;
  grid-row: 2;
}
.catalog-hero__badgeWrap{ grid-row: 2; }
.catalog-hero__right{
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  padding-top: 12px;
}



.catalog-info__k{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:18px;
  font-weight:600;
  color: rgba(255,255,255,.92);
  margin-bottom:6px;
}

.catalog-info__dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#FEC233;
}

.catalog-info__v{
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-size:16px;
  font-weight:600;
}
.catalog-info__v:hover{ color:#FEC233; }

.catalog-info__vText{
  color: rgba(255,255,255,.92);
  font-size:17px;
  line-height:1.55;
  font-weight:600;
  padding-left:18px;
}

/* ORTA SARI DEKOR (pill) + animasyon */
.catalog-hero__badgeWrap{
  position: relative;
  width: clamp(220px, 22vw, 360px);
  height: 60px;
  justify-self: center;
  grid-column: 2;
  overflow: visible; /* <-- güvenli */
}

/* Altındaki görsel */
.catalog-hero__badgeImg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* Hareket eden sarı pill */
.catalog-hero__badge{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;

  transform: translate3d(0,0,0); /* <-- başlangıç */
  animation: catalogBadgeSlideX 3.2s ease-in-out infinite alternate; /* <-- isim değişti */
  will-change: transform;
}

/* Sol uçtan sağ uca gider (wrap - pill genişliği kadar) */
@keyframes catalogBadgeSlideX{
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(calc(100% - 120px), 0, 0); }
}

/* Hareket istemeyen kullanıcılar için */
@media (prefers-reduced-motion: reduce){
  .catalog-hero__badge{ animation: none; }
}

/* Responsive */
@media (max-width: 900px){
  .catalog-hero__inner,
  .catalog-info__inner{
    width:min(1200px, calc(100% - 40px));
  }

  .catalog-band__grid{
    width:min(1200px, calc(100% - 20px));
    grid-template-columns:1fr;
  }

  .catalog-band__img{
    min-height: 240px;
  }

  .catalog-band__iso{
    display:none;
  }

  .catalog-hero__layout{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-hero__mesh{
    width:100%;
    opacity:.25;
  }
}


/* SEND MESSAGE */
.catalog-message{
  position: relative;
  background: #0b1f3a;
  padding: 40px 0 90px;
}

.catalog-message__inner{
  width: min(1280px, calc(100% - 120px));
  margin: 0 auto;
  position: relative;
}

.catalog-message__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.92);
  margin-bottom: 26px;
}

.catalog-message__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #FEC233;
}

.catalog-message__head{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
  align-items: start;
  margin-bottom: 55px;
}

.catalog-message__title{
  margin: 0;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.4;
  font-weight: 400;
  color: rgba(255,255,255,.96);
}

.catalog-message__desc{
  margin: 12px 0 0 0;
  max-width: 470px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
}

.catalog-message__form{
  width: 100%;
}

.catalog-message__grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px 40px;
}

.catalog-message__field{
  min-width: 0;
}

.catalog-message__field--full{
  grid-column: 1 / -1;
}

.catalog-message__field label{
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.45);
}

.catalog-message__field input,
.catalog-message__field textarea{
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  outline: none;
  color: #fff;
  font-size: 16px;
  padding: 0 0 14px 0;
  transition: border-color .18s ease;
}

.catalog-message__field textarea{
  resize: vertical;
  min-height: 90px;
}

/* hover ve focus: sadece altta beyaz çizgi */
.catalog-message__field input:hover,
.catalog-message__field textarea:hover,
.catalog-message__field input:focus,
.catalog-message__field textarea:focus{
  border-bottom-color: rgba(255,255,255,.95);
}

/* submit button */
.catalog-message__submit{
  margin-top: 42px;
  min-width: 130px;
  height: 48px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

/* senin attığın hover görünümü */
.catalog-message__submit:hover{
  background: #FEC233;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 1100px){
  .catalog-message__inner{
    width: min(1280px, calc(100% - 60px));
  }

  .catalog-message__head{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .catalog-message__grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px){
  .catalog-message{
    padding: 80px 0 70px;
  }

  .catalog-message__inner{
    width: min(1280px, calc(100% - 40px));
  }

  .catalog-message__grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .catalog-message__title{
    font-size: 34px;
  }

  .catalog-message__desc{
    margin-top: 0;
    font-size: 16px;
  }
}

/* catalog MAP */
.catalog-map{
  position: relative;
  background: #0b1f3a;
  padding: 0;
}

.catalog-map__wrap{
  width: 100%;
  height: 650px;
  line-height: 0;
  overflow: hidden;
}

.catalog-map__wrap iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* responsive */
@media (max-width: 900px){
  .catalog-map__wrap{
    height: 300px;
  }
}

@media (max-width: 600px){
  .catalog-map__wrap{
    height: 260px;
  }
}

.catalog-frame-section {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 60px 0 100px;
  background: #0b1f3a;
  overflow: hidden;
}

.catalog-frame-container {
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
  padding: 18px;
  background: #f4f6f9;
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  box-sizing: border-box;
  overflow: hidden;
}

.catalog-frame {
  display: block;
  width: 100%;
  height: 1150px;
  border: 0;
  border-radius: 16px;
  background: #f4f6f9;
}
@media (max-width: 768px) {
  .catalog-frame-section {
    padding: 40px 12px;
  }

  .catalog-frame {
    height: 760px;
  }
}
