/* SECTION */
.premium-section {
  background: #ffffff;
  padding: 0;
  font-family: Arial, sans-serif;
  margin: 0px auto 60px auto;
}

/* CONTAINER */
.premium-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

/* LEFT SIDE */
.premium-content {
    flex: 1;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #fd9e04, #ffffff);
}

.premium-content h1 {
  font-size: 36px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 20px;
}

.desc {
  color: #000;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* WHY SECTION */
.why-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #000;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 25px;
  margin-bottom: 30px;
}

.why-item {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #000;
}

/* CHECK ICON */
.check {
  width: 18px;
  height: 18px;
  background: #0b3c5d;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
}

.check::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  top: 2px;
  left: 6px;
  transform: rotate(45deg);
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #ff7800;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #072b44;
}

/* RIGHT IMAGE */
.premium-image {
  flex: 1;
}

.image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FLOATING CARD */
.floating-card {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 10px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.floating-card h2 {
  color: #ff7a00;
  font-size: 32px;
  margin: 0;
}

.floating-card p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .premium-container {
    flex-direction: column;
  }

  .premium-content {
    padding: 30px 20px;
  }
  .premium-content h1 {
        font-size:20px;   
  }
  
  .check {
    width: 30px;
  }

  .image-wrapper {
    position: relative;
    height: 300px;
  }
}