/* =============================
trade careers Section Styling
=============================== */

/* Section Styling */
.contact-options {
  background: #fff;
  padding: clamp(40px, 5vw, 100px) 0;
}

.option-title {
  color: #de251e;
  text-transform: uppercase;
  font-family: "Amsi Pro";
  font-weight: 900;
  font-size: clamp(1.2rem, 2vw, 4rem);
  margin-bottom: 5px;
}

/* Ice-cream Popsicle Icon */
.ice-cream-icon {
  width: clamp(25px, 2vw, 40px);
  height: clamp(50px, 6vh, 80px);
  background: #de251e;
  border-radius: 22px 22px 5px 5px;
  margin: 0 auto;
  position: relative;
}

.ice-cream-icon::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 20px;
  border: 1.4px solid #de251e;
  border-top: none;
  border-radius: 0 0 6px 6px;
  background: transparent;
}

/* Buttons */
.option-btn {
  background: transparent;
  border: 2px solid #de251e;
  border-radius: 50px;
  padding: clamp(10px, 1.2vw, 20px) clamp(30px, 3vw, 60px);
  font-size: clamp(0.9rem, 1.2vw, 2.3rem);
  font-weight: 900;
  font-family: "Amsi Pro", sans-serif;
  color: #de251e;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 5px 5px 0px #de251e;
}

.option-btn:hover {
  background: #de251e;
  color: #fff;
  box-shadow: 5px 5px 0px #de251e;
}

/* ============================================
   BREAKPOINTS
===============================================*/

/* ✅ Extra Small Phones (<=480px) */
@media (max-width: 480px) {
  .option-title {
    font-size: 1.1rem;
     
  }
  .option-btn {
    width: 120px;
    padding: 4px;
    font-size: 0.8rem;
    box-shadow: 3px 3px 0px #de251e;
  }
  .ice-cream-icon {
    display: none;
  }
}

/* ✅ Small Mobiles Landscape (481px–575px) */
@media (min-width: 481px) and (max-width: 575px) {
  .option-title {
    font-size: 1.3rem;
     
  }
  .option-btn {
    width: 150px;
    padding: 3px;
    font-size: 13px;
  }
  .ice-cream-icon {
    width: 25px;
    height: 55px;
  }
}

/* ✅ Small Tablets (576px–767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .option-title {
    font-size: 24px;
     
  }
  .option-btn {
    width: 120px;
    padding: 3px;
    font-size: 13px;
  }
  .ice-cream-icon {
    width: 28px;
    height: 60px;
  }
}

/* ✅ Medium Devices (768px–991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .option-title {
    font-size: 26px;
     
  }
  .option-btn {
    width: 150px;
    padding: 3px;
    font-size: 15px;
  }
  .ice-cream-icon {
    width: 30px;
    height: 65px;
  }
}

/* ✅ Large Devices (992px–1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .option-title {
    font-size: 28px;
     
  }
  .option-btn {
    width: 190px;
    padding: 8px;
    font-size: 15px;
  }
  .ice-cream-icon {
    width: 31px;
    height: 67px;
  }
}

/* ✅ Extra Large (1200px–1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .option-title {
    font-size: 30px;
     
  }
  .option-btn {
    padding: 5px;
    width: 200px;
    font-size: 1.1rem;
  }
  .ice-cream-icon {
    width: 32px;
    height: 70px;
  }
}

/* ✅ XXL (1400px–1919px full HD large monitors) */
@media (min-width: 1400px) and (max-width: 1919px) {
  .option-title {
    font-size: 32px;
     
  }
  .option-btn {
    padding: 8px;
    width: 220px;
    font-size: 1.1rem;
  }
  .ice-cream-icon {
    width: 34px;
    height: 75px;
  }
}

/* ✅ Ultra-wide Screens (1920px–2560px / 2K) */
@media (min-width: 1920px) and (max-width: 2560px) {
  .option-title {
    font-size: 35px;
     
  }
  .option-btn {
    padding: 9px;
    width: 250px;
    font-size: 1.4rem;
    padding: 12px;
  }
  .ice-cream-icon {
    width: 38px;
    height: 80px;
  }
}

/* ✅ 4K Screens (>=2561px) */
@media (min-width: 2561px) {
  .option-title {
    font-size: 40px;
     
  }
  .option-btn {
    width: 290px;
    font-size: 2rem;
    padding: 12px;
  }
  .ice-cream-icon {
    width: 45px;
    height: 95px;
  }
}
