/* --------------------------------------------------
   GLOBAL
-------------------------------------------------- */
body {
    background: #f5f7fa;
    font-family: "Poppins", sans-serif;
}

.sell-hero {
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}

.sell-card {
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 28px;
    padding: 70px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    transition: 0.6s ease;
    transform-style: preserve-3d;
}

.sell-card:hover {
    transform: translateY(-8px);
}

/* --------------------------------------------------
   IMAGE
-------------------------------------------------- */
.sell-img-box img {
    width: 100%;
    max-width: 520px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
    transition: .6s ease;
}

.sell-card:hover .sell-img-box img {
    transform: translateY(-10px) scale(1.02);
}


/* --------------------------------------------------
   RIGHT SIDE
-------------------------------------------------- */

.sell-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sell-sub {
    font-size: 17px;
    color: #666;
    margin-bottom: 35px;
}

/* INPUT GROUP */
.sell-input-group {
    display: flex;
    gap: 12px;
}

.sell-select {
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid #ddd;
    font-size: 16px;
    transition: .3s;
}

.sell-select:focus {
    border-color: #ff7b00;
}

.sell-offer-btn {
    padding: 16px 28px;
    background: #ff7b00;
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 15px 30px rgba(255, 123, 0, 0.35);
}

.sell-offer-btn:hover {
    background: #ff8b00;
    transform: translateY(-2px);
}


/* --------------------------------------------------
   HOW IT WORKS
-------------------------------------------------- */

.steps-section {
    text-align: center;
    padding: 120px 20px;
    background: white;
}

.steps-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.steps-desc {
    font-size: 18px;
    color: #444;
    margin-bottom: 60px;
}

.steps-wrapper {
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.step-box {
    background: #fff;
    border-radius: 18px;
    padding: 40px 30px;
    width: 350px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: .6s ease;
}

.step-box:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 45px;
    height: 45px;
    background: #ff7b00;
    color: white;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px auto;
}

.step-icon {
    font-size: 42px;
    color: #ff7b00;
    margin-bottom: 14px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}


/* --------------------------------------------------
   ANIMATIONS (APPLE STYLE)
-------------------------------------------------- */
.fade-up,
.fade-up-delay,
.fade-up-delay-2,
.fade-up-delay-3 {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay.show {
    transition-delay: .2s;
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-2.show {
    transition-delay: .35s;
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-3.show {
    transition-delay: .5s;
    opacity: 1;
    transform: translateY(0);
}


/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 950px) {

    .sell-card {
        flex-direction: column;
        text-align: center;
        padding: 50px 25px;
    }

    .sell-img-box img {
        max-width: 380px;
    }

    .sell-input-group {
        flex-direction: column;
    }

    .sell-offer-btn,
    .sell-select {
        width: 100%;
    }

    .steps-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .step-box {
        width: 100%;
        max-width: 400px;
    }
}
/* FORM CONTAINER */
.sell-form {
    margin-top: 30px;
    background: rgba(255,255,255,0.7);
    padding: 25px;
    border-radius: 18px;
    backdrop-filter: blur(7px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);

    display: none; 
    opacity: 0;
    transform: translateY(20px);
    transition: .5s ease;
}

/* WHEN SHOW */
.sell-form.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* FORM ROW */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

/* INPUTS */
.form-input {
    flex: 1;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: white;
    font-size: 15px;
}

/* INPUT HOVER / FOCUS */
.form-input:focus {
    outline: none;
    border-color: #ff7b00;
    box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.25);
}

/* BUTTON */
.form-submit-btn {
    width: 100%;
    padding: 15px;
    background: #ff7b00;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: .25s;
    box-shadow: 0 12px 25px rgba(255,123,0,0.35);
}

.form-submit-btn:hover {
    background: #ff8b00;
    transform: translateY(-2px);
}

/* MOBILE FIX */
@media(max-width:900px){
    .form-row {
        flex-direction: column;
    }
}

.terms-box {
  background: #fff;
  padding: 15px 18px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 12px;
  color: #555;
  line-height: 1.5;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-left: 4px solid #ff8400;
}

.terms-text {
  margin-bottom: 12px;
  font-size: 12px;
  color: #666;
}

.terms-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
}

.terms-check {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
