body {
  margin: 0;
  font-family: "URW DIN", "Inter", Arial, sans-serif;
}

/* HERO */
.hero {
  position: relative;
}

/* SWIPER */
.mySwiper {
  height: 70vh;
  overflow: hidden;
}

/* SLIDE */
.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.btns {
  margin-top: 20px;
}

/* 🔥 LEFT BLACK GRADIENT */
.swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), transparent);
  z-index: 1;
}

/* CONTENT */
.slide-content {
  position: relative;
  max-width: 1400px;
  margin: auto;
  align-self: center;
  height: 70vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: white;
}

/* LOGO */
.slide-logo {
  max-width: 100%;
  max-height: 293px;
  object-fit: contain;
}

/* TEXT */
.text-area {
  margin-top: 20px;
  max-width: 420px;
  font-size: 16px;
  opacity: 0.9;
  font-weight: 400;
}

/* BUTTONS */
.btns {
  display: flex;
  gap: 12px;
}

/* BUTTON BASE */
.btn {
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

/* PRIMARY */
.btn.primary {
  background: white;
  color: black;
}

/* SECONDARY */
.btn.secondary {
  background: transparent;
  border: 1px solid white;
  color: white;
}

/* TABS */
.tabs-wrapper {
  max-width: 1400px;
  margin: auto;
}

.tabs {
  width: 100%;
  display: flex;
  z-index: 10;
  background: #fff;
  max-width: 800px;
  margin-top: -55px;
  position: relative;
  padding-bottom: unset;

}

.tab {
  padding: 18px 24px;
  cursor: pointer;
  color: #000;
  font-size: 15px;
  font-weight: 500;
}

.tab.active {
  background: #fff;
  color: #e62429;
  margin-top: -5px;
  padding-top: 28px;
  border-top: 4px solid #e62429;
}

/* ============================================ */
/* RESPONSIVE ADDITIONS (NO EXISTING CODE CHANGED) */
/* ============================================ */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .mySwiper {
    height: 60vh;
  }
  
  .slide-content {
    height: 60vh;
    max-width: 90%;
    padding-left: 40px;
  }
  
  .slide-logo {
    max-height: 200px;
  }
  
  .text-area {
    max-width: 380px;
    font-size: 15px;
  }
  
  .tabs-wrapper {
    max-width: 90%;
  }
  
  .tabs {
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    margin-top: -45px;
  }
  
  .tab {
    padding: 14px 20px;
    font-size: 14px;
  }
  
  .tab.active {
    padding-top: 24px;
  }
}

/* Mobile (up to 767px) - TABS HIDDEN, IMAGES SCALE NATURALLY */
@media (max-width: 767px) {
  /* Hide tabs completely on mobile */
  .tabs-wrapper {
    display: none;
  }
  
  /* Keep same image behavior as tablet - just slightly adjusted */
  .mySwiper {
    height: 55vh;
  }
  
  .slide-content {
    height: 55vh;
    max-width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  /* Images stay as cover (like tablet) - no disappear, no cut off badly */
  .swiper-slide {
    background-size: cover;
    background-position: center;
  }
  
  /* Keep gradient natural like tablet */
  .swiper-slide::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
  }
  
  .slide-logo {
    max-height: 130px;
  }
  
  .text-area {
    max-width: 340px;
    font-size: 14px;
  }
  
  .btns {
    gap: 10px;
  }
  
  .btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .slide-content h1 {
    font-size: 20px;
    margin: 8px 0;
  }
}

/* Small Mobile (up to 480px) - scale down slightly but keep natural */
@media (max-width: 480px) {
  .mySwiper {
    height: 50vh;
  }
  
  .slide-content {
    height: 50vh;
  }
  
  .slide-logo {
    max-height: 100px;
  }
  
  .text-area {
    max-width: 280px;
    font-size: 13px;
  }
  
  .btn {
    padding: 7px 14px;
    font-size: 12px;
  }
  
  .slide-content h1 {
    font-size: 18px;
  }
}

/* Landscape orientation - keep natural */
@media (max-width: 767px) and (orientation: landscape) {
  .mySwiper {
    height: 85vh;
  }
  
  .slide-content {
    height: 85vh;
  }
  
  .slide-logo {
    max-height: 100px;
  }
}