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

:root{
  --avis-red:#d9002f;
  --avis-red-dark:#c5002b;
  --avis-red-bright:#ff0d47;
  --avis-red-bright-2:#ff1e57;
  --avis-black:#15171d;
  --avis-black-2:#1c1f25;
  --avis-white:#ffffff;
  --avis-shadow:0 18px 50px rgba(0,0,0,.24);
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#f2f2f2;
  color:#1a1a1a;
  overflow-x:hidden;
}

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

button,
input,
select{
  font-family:inherit;
}

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

.desktop-only{
  display:block;
}

.mobile-only{
  display:none;
}

.container{
  width:min(1740px, calc(100% - 32px));
  margin:0 auto;
}

/* DESKTOP HEADER */
.top-header{
  background:var(--avis-red-dark);
  position:relative;
  z-index:30;
}

.top-header-inner{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo img{
  height:52px;
  width:auto;
  object-fit:contain;
}

.top-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.top-pill{
  min-height:42px;
  padding:0 22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#ef1743;
  color:#fff;
  font-size:13px;
  font-weight:700;
  transition:.25s ease;
  white-space:nowrap;
}

.top-pill:hover{
  background:#ff2a5c;
}

.lang-btn{
  width:42px;
  height:42px;
  border-radius:999px;
  background:#ef1743;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:800;
  font-size:14px;
}

/* DESKTOP NAV */
.main-nav{
  background:var(--avis-red);
  position:relative;
  z-index:25;
}

.nav-inner{
  display:grid;
  grid-template-columns:repeat(6, minmax(0,1fr)) 72px;
  align-items:stretch;
}

.nav-inner a{
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  font-size:14px;
  font-weight:700;
  padding:0 10px;
  border-left:1px solid rgba(255,255,255,.08);
  transition:.25s ease;
}

.nav-inner a:first-child{
  border-left:none;
}

.nav-inner a:hover{
  background:#be0026;
}

.search-btn{
  border:none;
  background:transparent;
  border-left:1px solid rgba(255,255,255,.08);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.search-btn svg{
  width:24px;
  height:24px;
  fill:#fff;
}

/* MOBILE HEADER */
.mobile-header{
  background:var(--avis-red);
  position:relative;
  z-index:50;
}

.mobile-header-inner{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 0 0 12px;
}

.mobile-logo img{
  height:28px;
  width:auto;
}

.mobile-header-actions{
  display:flex;
  align-items:center;
}

.mobile-icon-btn{
  width:58px;
  height:44px;
  border:none;
  background:transparent;
  border-left:1px solid rgba(255,255,255,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  cursor:pointer;
}

.mobile-icon-btn svg{
  width:24px;
  height:24px;
  fill:#fff;
}

.menu-toggle{
  flex-direction:column;
  gap:4px;
}

.menu-toggle span{
  width:20px;
  height:2px;
  background:#fff;
  border-radius:999px;
  transition:.25s ease;
}

.menu-toggle.active span:nth-child(1){
  transform:translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  transform:translateY(-6px) rotate(-45deg);
}

.mobile-menu{
  display:none;
  background:#bb0025;
  border-top:1px solid rgba(255,255,255,.12);
}

.mobile-menu.active{
  display:block;
}

.mobile-menu a{
  display:block;
  padding:14px 16px;
  color:#fff;
  font-size:14px;
  font-weight:700;
  border-top:1px solid rgba(255,255,255,.08);
}

/* HERO */
.hero{
  position:relative;
  min-height:708px;
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(255,255,255,.06), rgba(255,255,255,.02));
}

.hero-content{
  position:relative;
  z-index:2;
  padding-top:46px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.hero-title{
  text-align:center;
  color:#fff;
  font-size:28px;
  line-height:1.18;
  font-weight:800;
  text-shadow:0 3px 10px rgba(0,0,0,.28);
  margin-bottom:40px;
}

.desktop-break{
  display:none;
}

/* BOOKING */
.booking-shell{
  width:100%;
  max-width:760px;
  background:#756f69;
  box-shadow:var(--avis-shadow);
}

.booking-form{
  width:100%;
}

.booking-main{
  padding:20px 18px 18px;
}

.booking-row{
  display:grid;
  grid-template-columns:1fr 280px;
  gap:14px;
  margin-bottom:14px;
}

.booking-row:last-child{
  margin-bottom:0;
}

/* LEFT AREA */
.desktop-booking-layout{
  display:grid;
  grid-template-columns:38px 52px 1fr;
  gap:12px;
  align-items:center;
}

.step-badge{
  width:38px;
  height:38px;
  border-radius:50%;
  background:#000;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:800;
}

.field-label-mini{
  position:relative;
  color:#fff;
  font-size:13px;
  line-height:1.06;
  padding-left:10px;
}

.field-label-mini::before{
  content:"";
  position:absolute;
  left:0;
  top:2px;
  bottom:2px;
  width:2px;
  background:#ff0d47;
}

.office-wrap{
  position:relative;
  height:80px;
  background:#fff;
  display:flex;
  align-items:center;
}

.office-wrap select{
  width:100%;
  height:100%;
  border:none;
  outline:none;
  appearance:none;
  background:transparent;
  color:#232323;
  font-size:17px;
  font-weight:500;
  padding:0 68px 0 18px;
}

.field-divider{
  position:absolute;
  right:52px;
  top:14px;
  bottom:14px;
  width:1px;
  background:#e4e4e4;
}

.field-icon{
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  width:24px;
  height:24px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.field-icon svg{
  width:20px;
  height:20px;
  fill:#e20035;
}

/* RIGHT AREA */
.booking-right-group{
  display:grid;
  grid-template-columns:38px 1fr 108px;
  gap:8px;
  align-items:stretch;
}

.info-label{
  position:relative;
  color:#fff;
  font-size:12px;
  line-height:1.1;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding-left:10px;
}

.info-label::before{
  content:"";
  position:absolute;
  left:0;
  top:16px;
  bottom:16px;
  width:2px;
  background:#ff0d47;
}

.compact-panel{
  position:relative;
  min-height:80px;
  background:linear-gradient(180deg, #1b1d21 0%, #202228 100%);
  overflow:hidden;
}

.compact-panel input{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor:pointer;
}

.compact-display{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:#fff;
}

.compact-display .day{
  font-size:28px;
  line-height:1;
  font-weight:800;
}

.month-wrap{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:2px;
}

.month-wrap small{
  font-size:12px;
  font-weight:700;
  line-height:1;
}

.month-wrap em{
  font-style:normal;
  font-size:12px;
  font-weight:800;
  line-height:1;
}

.compact-time{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:24px;
  font-weight:800;
}

/* BOTTOM */
.booking-bottom{
  min-height:108px;
  background:#17191e;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  padding:0;
}

.discount-link{
  width:100%;
  min-height:54px;
  padding:0 18px;
  border:none;
  background:transparent;
  color:#fff;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.discount-text{
  white-space:nowrap;
}

.discount-arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  line-height:1;
  transition:.25s ease;
}

.discount-link.active .discount-arrow{
  transform:rotate(180deg);
}

.discount-panel{
  display:none;
  padding:16px 18px 6px;
  background:#17191e;
}

.discount-panel.active{
  display:block;
}

.discount-input{
  width:100%;
  height:46px;
  border:none;
  outline:none;
  background:#f2f2f2;
  color:#232323;
  font-size:14px;
  padding:0 14px;
}

.discount-input::placeholder{
  color:#9c9c9c;
}

.discount-actions{
  display:flex;
  align-items:center;
  gap:18px;
  padding-top:14px;
}

.discount-apply-btn{
  min-width:92px;
  height:36px;
  border:none;
  border-radius:999px;
  background:linear-gradient(180deg, var(--avis-red-bright) 0%, #ff0040 100%);
  color:#fff;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
}

.discount-cancel-btn{
  border:none;
  background:transparent;
  color:#fff;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
}

.discount-error{
  display:none;
  color:#ff6f87;
  font-size:13px;
  font-weight:700;
  padding-top:10px;
}

.discount-error.active{
  display:block;
}

.rent-btn{
  min-width:280px;
  width:280px;
  height:60px;
  margin:16px 18px 18px;
  border:none;
  border-radius:999px;
  background:linear-gradient(180deg, var(--avis-red-bright) 0%, #ff0040 100%);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-size:18px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(255,0,64,.28);
  transition:.25s ease;
  white-space:nowrap;
  align-self:flex-start;
}

.rent-btn:hover{
  transform:translateY(-1px);
  background:linear-gradient(180deg, var(--avis-red-bright-2) 0%, #ff1050 100%);
}

#dayCountText{
  white-space:nowrap;
  line-height:1;
}

.btn-arrow{
  font-size:24px;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

/* MOBILE EXTRA BLOCKS */
.mobile-promos{
  display:none;
  background:#efefef;
  padding:10px 0 18px;
}

.mobile-promos-inner{
  padding:0 12px;
}

.service-strip{
  background:#ececec;
  padding:14px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  border-top:1px solid #e2e2e2;
}

.service-item{
  flex:1;
  min-width:0;
  display:flex;
  align-items:center;
  gap:10px;
}

.service-item strong{
  display:block;
  font-size:14px;
  line-height:1.05;
  font-weight:800;
  color:#171717;
}

.service-item span{
  display:block;
  font-size:13px;
  line-height:1.05;
  font-weight:700;
  color:#171717;
  margin-top:2px;
}

.service-divider{
  width:1px;
  align-self:stretch;
  background:#d3d3d3;
}

.service-icon{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#f40a45;
  flex:0 0 42px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.service-icon svg{
  width:20px;
  height:20px;
  fill:#fff;
}

.promo-grid{
  margin-top:10px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.promo-card{
  display:block;
  background:#dcdcdc;
  overflow:hidden;
  min-height:210px;
}

.promo-card img{
  width:100%;
  height:100%;
  min-height:210px;
  object-fit:cover;
  display:block;
}

/* RESPONSIVE */
@media (max-width:1199px){
  .nav-inner{
    grid-template-columns:repeat(3, 1fr);
  }

  .search-btn{
    min-height:56px;
    grid-column:1 / -1;
    border-left:none;
    border-top:1px solid rgba(255,255,255,.08);
  }

  .hero{
    min-height:680px;
  }
}

@media (max-width:860px){
  .desktop-only{
    display:none !important;
  }

  .mobile-only{
    display:block !important;
  }

  .container{
    width:100%;
  }

  .hero{
    min-height:auto;
    background-position:center top;
  }

  .hero-content{
    padding:20px 0 0;
  }

  .hero-title{
    width:min(100% - 70px, 320px);
    margin:0 auto 18px;
    font-size:23px;
    line-height:1.04;
    text-shadow:0 3px 8px rgba(0,0,0,.32);
  }

  .booking-shell{
    width:100%;
    max-width:none;
    background:#736d67;
    box-shadow:none;
  }

  .booking-main{
    padding:12px 14px 8px;
  }

  .booking-row{
    grid-template-columns:1fr;
    gap:8px;
    margin-bottom:8px;
  }

  .desktop-booking-layout{
    display:block;
  }

  .office-wrap{
    height:48px;
  }

  .office-wrap select{
    font-size:13px;
    padding:0 50px 0 14px;
  }

  .field-divider{
    right:42px;
    top:8px;
    bottom:8px;
  }

  .field-icon{
    right:10px;
    width:18px;
    height:18px;
  }

  .field-icon svg{
    width:16px;
    height:16px;
  }

  .booking-right-group{
    grid-template-columns:1fr 1fr;
    gap:0;
    border:1px solid rgba(255,255,255,.08);
  }

  .compact-panel{
    min-height:48px;
    border-right:1px solid rgba(255,255,255,.08);
  }

  .compact-panel:last-child{
    border-right:none;
  }

  .compact-display{
    gap:8px;
  }

  .compact-display .day{
    font-size:21px;
  }

  .month-wrap small,
  .month-wrap em{
    font-size:10px;
  }

  .compact-time{
    font-size:18px;
  }

  .discount-link{
    min-height:46px;
    padding:0 14px;
    font-size:13px;
  }

  .discount-panel{
    padding:14px 14px 4px;
  }

  .discount-input{
    height:44px;
    font-size:13px;
  }

  .discount-actions{
    gap:14px;
    padding-top:12px;
    flex-wrap:wrap;
  }

  .discount-apply-btn{
    min-width:78px;
    height:34px;
    font-size:13px;
  }

  .discount-cancel-btn{
    font-size:13px;
  }

  .rent-btn{
    width:150px;
    min-width:150px;
    max-width:150px;
    height:40px;
    margin:14px 14px 14px;
    padding:0 16px;
    gap:8px;
    font-size:14px;
    line-height:1;
    overflow:hidden;
  }

  #dayCountText{
    display:inline-block;
    white-space:nowrap;
    line-height:1;
  }

  .btn-arrow{
    font-size:18px;
    line-height:1;
  }

  .mobile-promos{
    display:block;
  }
}
.service-strip-wrap{
  width:100%;
  background:#ececec;
  padding:24px 0 18px;
}

.service-strip{
  width:min(100% - 40px, 1350px);
  margin:0 auto;
  min-height:120px;
  background:#e8e8e8;
  display:grid;
  grid-template-columns:1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items:center;
  padding:0 26px;
}

.service-box{
  min-width:0;
  display:flex;
  align-items:center;
  gap:18px;
  padding:18px 18px;
  text-decoration:none;
  color:#111;
}

.service-box-icon{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:50%;
  background:#ed0b3f;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 2px 8px rgba(237,11,63,.18);
}

.service-box-icon svg{
  width:21px;
  height:21px;
  fill:#fff;
}

.service-box-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
  line-height:1.14;
}

.service-box-text strong{
  font-size:18px;
  font-weight:800;
  color:#111;
  font-style:normal;
}

.service-box-text em{
  margin-top:2px;
  font-size:18px;
  font-weight:800;
  color:#111;
  font-style:normal;
}

.service-box-divider{
  width:1px;
  height:44px;
  background:#c9c9c9;
  justify-self:center;
}

/* tablet */
@media (max-width:1100px){
  .service-strip{
    width:min(100% - 28px, 1200px);
    min-height:108px;
    padding:0 16px;
  }

  .service-box{
    gap:14px;
    padding:14px 12px;
  }

  .service-box-icon{
    width:38px;
    height:38px;
    min-width:38px;
  }

  .service-box-icon svg{
    width:19px;
    height:19px;
  }

  .service-box-text strong,
  .service-box-text em{
    font-size:15px;
  }
}

/* mobil */
@media (max-width:768px){
  .service-strip-wrap{
    padding:14px 0 12px;
  }

  .service-strip{
    width:calc(100% - 20px);
    min-height:auto;
    grid-template-columns:1fr 1px 1fr;
    padding:0 8px;
  }

  .service-box{
    gap:10px;
    padding:16px 8px;
  }

  .service-box-icon{
    width:34px;
    height:34px;
    min-width:34px;
  }

  .service-box-icon svg{
    width:17px;
    height:17px;
  }

  .service-box-text strong,
  .service-box-text em{
    font-size:11px;
    line-height:1.18;
  }

  .service-box-divider{
    height:34px;
  }

  .hide-mobile{
    display:none !important;
  }
}

/* küçük mobil */
@media (max-width:430px){
  .service-strip{
    width:calc(100% - 16px);
    padding:0 6px;
  }

  .service-box{
    gap:9px;
    padding:14px 6px;
  }

  .service-box-icon{
    width:32px;
    height:32px;
    min-width:32px;
  }

  .service-box-icon svg{
    width:16px;
    height:16px;
  }

  .service-box-text strong,
  .service-box-text em{
    font-size:10px;
  }
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#ececec;
  color:#111;
  overflow-x:hidden;
}

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

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

.promo-area{
  width:100%;
  background:#ececec;
  padding:32px 0 20px;
}

.promo-container{
  width:min(100% - 32px, 1320px);
  margin:0 auto;
}

/* ÜST SERVİS ŞERİDİ */
.service-strip{
  width:100%;
  background:#e8e8e8;
  min-height:120px;
  display:grid;
  grid-template-columns:1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items:center;
  padding:0 28px;
  margin-bottom:32px;
}

.service-box{
  display:flex;
  align-items:center;
  gap:18px;
  min-width:0;
  padding:18px 16px;
}

.service-box-icon{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:50%;
  background:#ed0b3f;
  display:flex;
  align-items:center;
  justify-content:center;
}

.service-box-icon svg{
  width:20px;
  height:20px;
  fill:#fff;
}

.service-box-text{
  display:flex;
  flex-direction:column;
  line-height:1.15;
}

.service-box-text strong,
.service-box-text em{
  font-size:18px;
  font-weight:800;
  color:#111;
  font-style:normal;
}

.service-box-divider{
  width:1px;
  height:44px;
  background:#c9c9c9;
  justify-self:center;
}

/* PROMO GRID */
.promo-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-bottom:12px;
}

.promo-card{
  display:block;
  overflow:hidden;
  background:#ddd;
}

.promo-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}

.promo-card:hover img{
  transform:scale(1.02);
}

/* 2. satırda sadece 2 kart kalsın diye */
.promo-card:nth-child(4),
.promo-card:nth-child(5){
  max-width:100%;
}

/* ALT BANNER */
.help-banner{
  display:block;
  width:calc((100% - 48px) / 3 * 2 + 24px);
  margin-top:8px;
}

.help-banner img{
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
}

/* 1200 altı */
@media (max-width:1200px){
  .promo-container{
    width:min(100% - 24px, 1100px);
  }

  .service-strip{
    min-height:106px;
    padding:0 14px;
  }

  .service-box{
    gap:14px;
    padding:14px 10px;
  }

  .service-box-icon{
    width:38px;
    height:38px;
    min-width:38px;
  }

  .service-box-icon svg{
    width:18px;
    height:18px;
  }

  .service-box-text strong,
  .service-box-text em{
    font-size:15px;
  }

  .promo-grid{
    gap:16px;
  }

  .help-banner{
    width:calc((100% - 32px) / 3 * 2 + 16px);
  }
}

/* tablet */
@media (max-width:860px){
  .promo-area{
    padding:16px 0 14px;
  }

  .promo-container{
    width:calc(100% - 20px);
  }

  .service-strip{
    min-height:auto;
    grid-template-columns:1fr 1px 1fr;
    padding:0 8px;
    margin-bottom:14px;
  }

  .service-box{
    gap:10px;
    padding:14px 8px;
  }

  .service-box-icon{
    width:34px;
    height:34px;
    min-width:34px;
  }

  .service-box-icon svg{
    width:16px;
    height:16px;
  }

  .service-box-text strong,
  .service-box-text em{
    font-size:11px;
    line-height:1.18;
  }

  .service-box-divider{
    height:34px;
  }

  .mobile-hide{
    display:none !important;
  }

  .promo-grid{
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-bottom:10px;
  }

  .help-banner{
    width:100%;
    margin-top:0;
  }
}
body{
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

/* servis yazı stili */
.service-box-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
  line-height:1.05;
}

.service-box-text strong{
  font-size:17px;
  font-weight:700;
  letter-spacing:0.2px;
  color:#111;
}

.service-box-text em{
  font-size:17px;
  font-weight:700;
  font-style:normal;
  letter-spacing:0.2px;
  color:#111;
}

/* küçük mobil */
@media (max-width:480px){
  .promo-container{
    width:calc(100% - 16px);
  }

  .service-strip{
    padding:0 6px;
  }

  .service-box{
    gap:8px;
    padding:13px 6px;
    align-items:center;
  }

  .service-box-icon{
    width:32px;
    height:32px;
    min-width:32px;
  }

  .service-box-icon svg{
    width:15px;
    height:15px;
  }

  .service-box-text{
    line-height:1.08;
  }

  .service-box-text strong,
  .service-box-text em{
    font-size:10px;
    font-weight:700;
    letter-spacing:0.1px;
  }

  .promo-grid{
    gap:8px;
  }
  /* FONT LOAD */
@font-face {
  font-family: "HelveticaNeueCustom";
  src: local("Helvetica Neue"), 
       local("HelveticaNeue"),
       local("Helvetica Neue Regular");
  font-weight: 400;
}

@font-face {
  font-family: "HelveticaNeueCustom";
  src: local("Helvetica Neue Bold"),
       local("HelveticaNeue-Bold");
  font-weight: 700;
}

/* GLOBAL FONT */
body{
  font-family: "HelveticaNeueCustom", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
}
.help-banner-box{
  display:block;
  width:100%;
  text-decoration:none;
  overflow:hidden;
}

/* desktop / tablet */
.help-banner-mobile-top{
  background:#c9002b;
  padding:18px 20px;
}

.help-banner-mobile-top h3{
  margin:0;
  color:#fff;
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size:18px;
  line-height:1.15;
  font-weight:800;
}

.help-banner-mobile-bottom{
  background:#000;
  padding:18px 20px 20px;
}

.help-banner-mobile-bottom p{
  margin:0 0 18px;
  color:#fff;
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size:14px;
  line-height:1.5;
  font-weight:500;
}

.help-banner-mobile-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#fff;
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size:14px;
  font-weight:800;
  letter-spacing:.1px;
}

.help-banner-mobile-link svg{
  width:14px;
  height:14px;
  fill:none;
  stroke:#fff;
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* mobil birebir görünüm */
@media (max-width:560px){
  .help-banner-box{
    border:1px solid #d9d9d9;
    background:#fff;
  }

  .help-banner-mobile-top{
    padding:14px 16px;
    background:#c7002d;
  }

  .help-banner-mobile-top h3{
    font-size:15px;
    line-height:1.2;
    font-weight:800;
  }

  .help-banner-mobile-bottom{
    padding:14px 16px 16px;
    background:#000;
  }

  .help-banner-mobile-bottom p{
    font-size:12px;
    line-height:1.55;
    margin-bottom:14px;
  }

  .help-banner-mobile-link{
    font-size:12px;
    font-weight:800;
    gap:5px;
  }

  .help-banner-mobile-link svg{
    width:12px;
    height:12px;
    stroke-width:3;
  }
}
*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
  background:#f3f3f3;
  color:#111;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

.newsletter-fake{
  width:100%;
  background:#ececec;
  border-top:1px solid #e2e2e2;
  border-bottom:1px solid #e2e2e2;
  padding:10px 0;
}

.newsletter-fake-inner{
  width:min(100% - 40px, 1320px);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(320px, 1fr) auto;
  align-items:center;
  gap:28px;
}

.newsletter-fake-title{
  margin:0;
  font-size:17px;
  line-height:1.15;
  font-weight:700;
  color:#111;
}

.newsletter-fake-form{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:nowrap;
}

.newsletter-input-wrap{
  width:365px;
  flex:0 0 365px;
}

.newsletter-input{
  width:100%;
  height:40px;
  border:1px solid #cfcfcf;
  background:#f8f8f8;
  outline:none;
  padding:0 14px;
  font-size:14px;
  font-weight:500;
  color:#111;
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
}

.newsletter-input::placeholder{
  color:#7e7e7e;
}

.newsletter-check{
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
  position:relative;
}

.newsletter-check input{
  position:absolute;
  opacity:0;
  inset:0;
  cursor:pointer;
}

.newsletter-check-box{
  width:22px;
  height:22px;
  border:1px solid #d6d6d6;
  background:#f5f5f5;
  flex:0 0 22px;
  position:relative;
}

.newsletter-check input:checked + .newsletter-check-box::after{
  content:"";
  position:absolute;
  left:6px;
  top:2px;
  width:6px;
  height:11px;
  border:solid #111;
  border-width:0 2px 2px 0;
  transform:rotate(45deg);
}

.newsletter-check-text{
  font-size:12px;
  font-weight:700;
  color:#111;
  text-decoration:underline;
  line-height:1.2;
}

.newsletter-check-text-light{
  font-size:12px;
  font-weight:500;
  color:#111;
  line-height:1.2;
}

.newsletter-btn{
  min-width:104px;
  height:40px;
  border:none;
  border-radius:999px;
  background:#ff0a3d;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 18px;
  font-size:13px;
  font-weight:800;
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
  cursor:pointer;
}

.newsletter-btn svg{
  width:14px;
  height:14px;
  fill:none;
  stroke:#fff;
  stroke-width:2.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

@media (max-width:1100px){
  .newsletter-fake-inner{
    width:min(100% - 24px, 1100px);
    grid-template-columns:1fr;
    gap:16px;
  }

  .newsletter-fake-form{
    flex-wrap:wrap;
    gap:12px;
  }

  .newsletter-input-wrap{
    width:100%;
    flex:1 1 100%;
  }
}

@media (max-width:560px){
  .newsletter-fake{
    padding:12px 0;
  }

  .newsletter-fake-inner{
    width:calc(100% - 16px);
    gap:12px;
  }

  .newsletter-fake-title{
    font-size:16px;
    line-height:1.15;
  }

  .newsletter-fake-form{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .newsletter-input-wrap{
    width:100%;
    flex:none;
  }

  .newsletter-input{
    height:44px;
    font-size:14px;
    padding:0 14px;
    background:#f4f4f4;
  }

  .newsletter-check{
    gap:8px;
    align-items:center;
    flex-wrap:wrap;
    white-space:normal;
  }

  .newsletter-check-box{
    width:26px;
    height:26px;
    flex:0 0 26px;
  }

  .newsletter-check input:checked + .newsletter-check-box::after{
    left:8px;
    top:3px;
    width:7px;
    height:13px;
  }

  .newsletter-check-text,
  .newsletter-check-text-light{
    font-size:12px;
    line-height:1.35;
  }

  .newsletter-btn{
    min-width:145px;
    height:44px;
    padding:0 24px;
    font-size:14px;
    gap:10px;
  }

  .newsletter-btn svg{
    width:15px;
    height:15px;
  }
}
@media (max-width:560px){
  .help-banner-box{
    margin-bottom:20px;
  }

  .newsletter-fake{
    padding-top:14px; /* üstten nefes */
  }
}
.seo-scroll-box-wrap{
  width:100%;
  background:#f3f3f3;
  padding:18px 0 24px;
}

.seo-scroll-box{
  width:calc(100% - 40px);
  max-width:1400px;
  height:260px;
  margin:0 auto;
  background:#ffffff;
  border:1px solid #dddddd;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,.04);
}

.seo-scroll-inner{
  height:100%;
  overflow-y:auto;
  overflow-x:hidden;
  padding:18px 16px 18px 16px;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
}

/* scrollbar */
.seo-scroll-inner::-webkit-scrollbar{
  width:8px;
}

.seo-scroll-inner::-webkit-scrollbar-track{
  background:#efefef;
}

.seo-scroll-inner::-webkit-scrollbar-thumb{
  background:#c7c7c7;
  border-radius:999px;
}

.seo-scroll-inner::-webkit-scrollbar-thumb:hover{
  background:#b5b5b5;
}

.seo-mini-block{
  margin-bottom:22px;
}

.seo-mini-block:last-child{
  margin-bottom:0;
}

.seo-mini-block h3{
  margin:0 0 10px;
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size:20px;
  line-height:1.25;
  font-weight:700;
  color:#111;
  text-align:center;
}

.seo-mini-block p{
  margin:0;
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size:14px;
  line-height:1.7;
  font-weight:400;
  color:#222;
  text-align:center;
}

.seo-mini-block ul{
  margin:0;
  padding:0;
  list-style:none;
}

.seo-mini-block li{
  position:relative;
  margin-bottom:10px;
  padding-left:16px;
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size:14px;
  line-height:1.65;
  color:#222;
  text-align:left;
}

.seo-mini-block li:last-child{
  margin-bottom:0;
}

.seo-mini-block li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#d9002f;
}

/* tablet */
@media (max-width:768px){
  .seo-scroll-box{
    width:calc(100% - 20px);
    height:240px;
  }

  .seo-scroll-inner{
    padding:16px 14px;
  }

  .seo-mini-block{
    margin-bottom:20px;
  }

  .seo-mini-block h3{
    font-size:18px;
  }

  .seo-mini-block p,
  .seo-mini-block li{
    font-size:13px;
    line-height:1.6;
  }
}

/* küçük mobil */
@media (max-width:480px){
  .seo-scroll-box-wrap{
    padding:14px 0 18px;
  }

  .seo-scroll-box{
    width:calc(100% - 16px);
    height:220px;
  }

  .seo-scroll-inner{
    padding:14px 12px;
  }

  .seo-mini-block h3{
    font-size:16px;
    line-height:1.28;
    margin-bottom:8px;
  }

  .seo-mini-block p{
    font-size:12px;
    line-height:1.55;
  }

  .seo-mini-block li{
    font-size:12px;
    line-height:1.55;
    padding-left:14px;
  }

  .seo-mini-block li::before{
    top:7px;
    width:5px;
    height:5px;
  }
}
.mobile-footer-fake{
  display:none;
}

@media (max-width:768px){
  .mobile-footer-fake{
    display:block;
    width:100%;
    background:#efefef;
    padding:0;
    border-top:1px solid #d9d9d9;
    border-bottom:1px solid #d9d9d9;
  }

  .mobile-footer-list{
    width:100%;
    background:#efefef;
  }

  .mobile-footer-row{
    width:100%;
    min-height:48px;
    padding:0 14px;
    background:#efefef;
    border-top:1px solid #d7d7d7;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    text-decoration:none;
    color:#1a1a1a;
    pointer-events:none; /* çalışmasın */
    cursor:default;
  }

  .mobile-footer-row:first-child{
    border-top:none;
  }

  .mobile-footer-row span{
    font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size:15px;
    line-height:1.2;
    font-weight:500;
    color:#1a1a1a;
  }

  .mobile-footer-row svg{
    width:18px;
    height:18px;
    flex:0 0 18px;
    fill:none;
    stroke:#111;
    stroke-width:2.2;
    stroke-linecap:round;
    stroke-linejoin:round;
  }

  .language-row{
    min-height:52px;
  }

  .language-left{
    display:flex;
    align-items:center;
    gap:10px;
  }

  .language-left img{
    width:22px;
    height:22px;
    border-radius:50%;
    object-fit:cover;
    flex:0 0 22px;
  }

  .language-left span{
    font-size:15px;
    font-weight:500;
    letter-spacing:.2px;
  }
}
.footer-extra{
  width:100%;
  background:#000;
  padding:16px 0 0;
}

/* QR */
.footer-qr{
  display:flex;
  flex-direction:column;
  align-items:flex-start; /* sola yasla */
  gap:6px;
  margin-bottom:12px;
  padding-left:16px; /* soldan boşluk */
}

.footer-qr img{
  width:110px;
  height:auto;
}

.footer-qr span{
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size:12px;
  color:#d9002f;
  font-weight:600;
}

/* SOCIAL BAR */
.footer-social{
  width:100%;
  background:#e30613;
  display:flex;
  align-items:center;
  justify-content:space-around;
  padding:14px 0;
}

.footer-social a{
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer-social img{
  width:20px;
  height:20px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

/* APP */
.footer-app{
  display:flex;
  align-items:center;
  gap:16px;
  padding:16px 16px 20px;
  border-top:1px solid #222;
}

.footer-app img{
  width:70px;
  height:auto;
}

.footer-app p{
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size:14px;
  line-height:1.5;
  color:#fff;
  font-weight:500;
}
@media (max-width:480px){

  .footer-qr img{
    width:95px;
  }

  .footer-social{
    padding:12px 0;
  }

  .footer-social img{
    width:18px;
    height:18px;
  }

  .footer-app{
    gap:12px;
    padding:14px 12px 18px;
  }

  .footer-app img{
    width:60px;
  }

  .footer-app p{
    font-size:13px;
  }
}
/* WRAP */
.footer-qr-wrap{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:0 16px;
  margin-bottom:12px;
}

/* FAKE RECAPTCHA */
.fake-recaptcha{
  width:78px;
  height:78px;
  background:#f9f9f9;
  border:1px solid #dcdcdc;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  font-family:Arial, sans-serif;
}

.fake-recaptcha-box{
  width:18px;
  height:18px;
  border:2px solid #c1c1c1;
  background:#fff;
}

.fake-recaptcha-text{
  font-size:8px;
  color:#777;
  text-align:center;
  line-height:1.2;
}

/* QR */
.footer-qr{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
}

.footer-qr img{
  width:110px;
  height:auto;
}

.footer-qr span{
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size:12px;
  color:#d9002f;
  font-weight:600;
}
.floating-recaptcha-box{
  position:fixed;
  left:8px;
  bottom:14px;
  width:56px;
  min-height:58px;
  background:#fff;
  border:1px solid #d9d9d9;
  box-shadow:0 1px 4px rgba(0,0,0,.14);
  z-index:9999;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  padding:4px 4px 3px;
  user-select:none;
  pointer-events:none;
}

.floating-recaptcha-img{
  width:34px;
  height:34px;
  object-fit:contain;
  display:block;
}

.floating-recaptcha-text{
  margin-top:2px;
  font-family:Arial, sans-serif;
  font-size:6px;
  line-height:1.1;
  color:#777;
  text-align:center;
  white-space:nowrap;
}

/* tablet */
@media (max-width:768px){
  .floating-recaptcha-box{
    left:6px;
    bottom:12px;
    width:52px;
    min-height:54px;
    padding:4px 4px 3px;
  }

  .floating-recaptcha-img{
    width:31px;
    height:31px;
  }

  .floating-recaptcha-text{
    font-size:5.8px;
  }
}

/* küçük mobil */
@media (max-width:480px){
  .floating-recaptcha-box{
    left:5px;
    bottom:10px;
    width:48px;
    min-height:50px;
    padding:3px 3px 2px;
  }

  .floating-recaptcha-img{
    width:28px;
    height:28px;
  }

  .floating-recaptcha-text{
    font-size:5.4px;
  }
}
.avis-footer-mega{
  display:block;
  width:100%;
  background:#C9002B; /* BURAYI DEĞİŞTİRDİK */
  padding:40px 0 44px;
  font-family:Arial, Helvetica, sans-serif;
}

.avis-footer-wrap{
  max-width:1220px;
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1.05fr 1fr 1fr 1fr 1.05fr;
  gap:26px;
  align-items:start;
}

.avis-col h3{
  margin:0 0 14px;
  font-size:14px;
  line-height:1.2;
  font-weight:700;
  color:#fff;
}

.avis-col a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  text-decoration:none;
  color:#fff;
  font-size:13px;
  font-weight:700;
  line-height:1.45;
  min-height:42px;
  padding:0 0 0 0;
  border-top:1px solid rgba(255,255,255,0.12);
  transition:opacity .2s ease;
  pointer-events:none; /* butonlar çalışmaz */
  cursor:default;
}

.avis-col a:last-child{
  border-bottom:1px solid rgba(255,255,255,0.12);
}

.avis-col a span{
  flex:0 0 auto;
  color:#fff;
  font-size:22px;
  line-height:1;
  font-weight:400;
  margin-left:12px;
  transform:translateY(-1px);
}

.avis-col a.has-drop span{
  font-size:18px;
  transform:translateY(-2px);
}

.avis-col a:hover{
  opacity:1;
}

@media (max-width: 991px){
  .avis-footer-mega{
    display:none !important; /* mobile kapa */
  }
}