/* How to Sell Page Styles */
.hts-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2a4a6b 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Why Sell Section */
.why-sell-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.why-sell-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a365d;
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Process Timeline */
.process-section {
    padding: 6rem 0;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a365d;
    margin-bottom: 4rem;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: #1a365d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 2;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.timeline-duration {
    display: inline-block;
    background: #ffd700;
    color: #1a365d;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Categories Section */
.categories-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

.content-column h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.content-column p {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.category-group h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
}

.category-group ul {
    list-style: none;
    padding: 0;
}

.category-group li {
    color: #6c757d;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}

.category-group li::before {
    content: '•';
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.categories-showcase {
    display: grid;
    gap: 1rem;
}

.showcase-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.showcase-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
}

.showcase-overlay h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
}

.showcase-overlay p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Valuation Section */
.valuation-section {
    padding: 6rem 0;
}

.valuation-form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.form-header {
    background: #1a365d;
    color: white;
    padding: 2rem;
    text-align: center;
}

.form-header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.form-header p {
    margin: 0;
    opacity: 0.9;
}

.valuation-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a365d;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a365d;
}

.file-upload {
    border: 2px dashed #e9ecef;
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.file-upload:hover {
    border-color: #1a365d;
}

.file-upload input {
    display: none;
}

.upload-text {
    color: #6c757d;
}

.upload-text i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.btn-full {
    width: 100%;
}

.valuation-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: #ffd700;
    margin-top: 0.25rem;
}

.feature-item h4 {
    margin: 0 0 0.5rem 0;
    color: #1a365d;
}

.feature-item p {
    margin: 0;
    color: #6c757d;
    font-size: 0.875rem;
}

/* Commission Section */
.commission-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.commission-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a365d;
    margin-bottom: 4rem;
}

.commission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.commission-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.commission-card.featured {
    border: 3px solid #ffd700;
    transform: scale(1.05);
}

.commission-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #1a365d;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.commission-tier {
    font-size: 1.125rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 1rem;
}

.commission-rate {
    font-size: 3rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.commission-range {
    color: #6c757d;
    margin-bottom: 2rem;
    font-weight: 600;
}

.commission-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.commission-features li {
    padding: 0.5rem 0;
    color: #6c757d;
    position: relative;
    padding-left: 1.5rem;
}

.commission-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.commission-note {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #1a365d;
    color: white;
}

.contact-content {
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.contact-content > p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
}

.contact-info p {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.contact-info span {
    font-size: 0.875rem;
    opacity: 0.8;
}

.contact-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #ffd700;
    color: #1a365d;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: white;
    color: #1a365d;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0;
        text-align: center;
    }
    
    .timeline-number {
        position: relative;
        margin: 0 auto 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .commission-grid {
        grid-template-columns: 1fr;
    }
    
    .commission-card.featured {
        transform: none;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 250px;
    }
}