﻿.escrow-hero {
    background: linear-gradient(135deg, #fa8c16 0%, #ff6b35 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

    .escrow-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .escrow-hero p {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto 40px;
    }

.escrow-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

    .escrow-form h3 {
        color: #333;
        margin-bottom: 20px;
        font-weight: 600;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333;
    }

    .form-group input, .form-group textarea {
        width: 100%;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        padding: 15px;
        font-size: 16px;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: #fa8c16;
        }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

.escrow-btn {
    background: #fa8c16;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
}

    .escrow-btn:hover {
        background: #e67e0f;
    }

.help-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    text-align: center;
    line-height: 1.4;
}

    .help-text a {
        color: #fa8c16;
        text-decoration: none;
    }

.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fa8c16, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

.process-section {
    padding: 80px 0;
    background: white;
}

.process-step {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    position: relative;
    margin-bottom: 30px;
}

    .process-step::before {
        content: "";
        position: absolute;
        top: 50%;
        right: -15px;
        width: 30px;
        height: 2px;
        background: #fa8c16;
        transform: translateY(-50%);
    }

    .process-step:last-child::before {
        display: none;
    }

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fa8c16, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

    .pricing-card.featured {
        border: 3px solid #fa8c16;
        transform: scale(1.05);
    }

        .pricing-card.featured::before {
            content: "Most Popular";
            position: absolute;
            top: 20px;
            right: -30px;
            background: #fa8c16;
            color: white;
            padding: 8px 40px;
            font-size: 0.9rem;
            font-weight: 600;
            transform: rotate(45deg);
        }

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fa8c16;
    margin-bottom: 20px;
}

.service-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

    .service-features li {
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
        color: #555;
    }

        .service-features li:last-child {
            border-bottom: none;
        }

    .service-features .check {
        color: #28a745;
        margin-right: 8px;
    }

.payment-section {
    padding: 80px 0;
    background: white;
}

.payment-method {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

    .payment-method:hover {
        transform: translateY(-3px);
    }

.payment-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fa8c16;
    font-size: 1.5rem;
}

.payment-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.payment-description {
    color: #666;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, #fa8c16 0%, #ff6b35 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

    .cta-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .cta-section p {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 30px;
    }

.cta-btn {
    background: white;
    color: #fa8c16;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .cta-btn:hover {
        transform: translateY(-2px);
    }
