/* Sell Web Page Specific Styles */

.sell-web-main {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #e2e8f0;
}

/* Hero Section */
.sell-hero {
    padding: 120px 20px 80px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.sell-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 165, 0, 0.08) 0%, transparent 50%);
    z-index: -1;
}

.sell-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sell-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    animation: badgePulse 2.5s infinite;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.sell-hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 25px;
    text-shadow: 0 0 35px rgba(255, 107, 107, 0.6);
    line-height: 1.2;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sell-hero-subtitle {
    font-size: 1.4rem;
    color: #94a3b8;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sell-hero-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-price-old {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 2rem;
    font-weight: 500;
}

.hero-price-new {
    color: #ff6b6b;
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 0 0 25px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-price-save {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.sell-hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ff6b6b;
    font-weight: 600;
    padding: 15px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 107, 107, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.feature-item i {
    font-size: 1.3rem;
}

.sell-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-btn-primary,
.hero-btn-secondary {
    padding: 18px 35px;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    justify-content: center;
    text-decoration: none;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    color: white;
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(255, 107, 107, 0.6);
}

.hero-btn-secondary {
    background: transparent;
    color: #94a3b8;
    border: 2px solid #475569;
}

.hero-btn-secondary:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
    transform: translateY(-3px);
}

/* Features Section */
.sell-features {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-title {
    text-align: center;
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 20px;
    text-shadow: 0 0 25px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #94a3b8;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 165, 0, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(255, 165, 0, 0.3));
}

.feature-icon i {
    font-size: 2rem;
    color: #ff6b6b;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 1rem;
}

/* Pricing Section */
.sell-pricing {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-title {
    text-align: center;
    font-size: 2.5rem;
    color: #00ff87;
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(0, 255, 135, 0.3);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #00ff87;
    box-shadow: 0 20px 40px rgba(0, 255, 135, 0.2);
}

.pricing-card.featured {
    border-color: #00ff87;
    box-shadow: 0 15px 30px rgba(0, 255, 135, 0.3);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: #00ff87;
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 20px;
}

.price-old {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.price-new {
    color: #00ff87;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(0, 255, 135, 0.5);
}

.pricing-description {
    color: #94a3b8;
    margin-bottom: 30px;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 8px 0;
}

.pricing-features li i {
    color: #00ff87;
    margin-right: 15px;
    font-size: 1rem;
    width: 16px;
}

.pricing-btn {
    background: linear-gradient(135deg, #00ff87 0%, #60efff 100%);
    color: #0f172a;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 135, 0.4);
}

/* Contact Section */
.sell-contact {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.1);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sell-contact h2 {
    font-size: 2.5rem;
    color: #00ff87;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 135, 0.3);
}

.sell-contact p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    color: #00ff87;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #e2e8f0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff87;
    box-shadow: 0 0 15px rgba(0, 255, 135, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

.submitbtn {
    background: linear-gradient(135deg, #00ff87 0%, #60efff 100%);
    color: #0f172a;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px auto 0;
    min-width: 200px;
}

.submitbtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 135, 0.4);
}

/* Guarantee Section */
.sell-guarantee {
    padding: 60px 20px;
    background: rgba(0, 255, 135, 0.05);
    border-top: 1px solid rgba(0, 255, 135, 0.2);
    border-bottom: 1px solid rgba(0, 255, 135, 0.2);
}

.guarantee-container {
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-content {
    text-align: center;
    padding: 30px;
    background: rgba(0, 255, 135, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 135, 0.3);
}

.guarantee-content i {
    font-size: 3rem;
    color: #00ff87;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 135, 0.5);
}

.guarantee-content h3 {
    font-size: 1.8rem;
    color: #00ff87;
    margin-bottom: 15px;
}

.guarantee-content p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sell-hero-title {
        font-size: 2.5rem;
    }
    
    .sell-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .sell-hero-features {
        gap: 20px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .pricing-title,
    .sell-contact h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .sell-hero {
        padding: 100px 15px 60px;
    }
    
    .sell-hero-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
}

/* Loading Animation */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading .submit-btn {
    background: #64748b;
}

.loading .submit-btn i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}