﻿.bulk-transfer-hero {
    background: linear-gradient(135deg, #fa8c16 0%, #ff6b35 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

    .bulk-transfer-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .bulk-transfer-hero p {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto 40px;
    }

.bulk-transfer-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

    .bulk-transfer-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 textarea {
        width: 100%;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        padding: 15px;
        font-size: 16px;
        resize: vertical;
        min-height: 120px;
        transition: border-color 0.3s ease;
    }

        .form-group textarea:focus {
            outline: none;
            border-color: #fa8c16;
        }

    .form-group input {
        width: 100%;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        padding: 15px;
        font-size: 16px;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus {
            outline: none;
            border-color: #fa8c16;
        }

.bulk-transfer-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;
}

    .bulk-transfer-btn:hover {
        background: #e67e0f;
    }

.help-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    line-height: 1.4;
}

    .help-text a {
        color: #fa8c16;
        text-decoration: none;
    }

.example-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

    .example-section h4 {
        color: #333;
        margin-bottom: 10px;
        font-size: 1rem;
    }

.example-code {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #333;
    white-space: pre-wrap;
}

.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefit-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;
}

    .benefit-card:hover {
        transform: translateY(-5px);
    }

.benefit-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;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
}

.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-table {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

    .pricing-table .table {
        margin: 0;
    }

        .pricing-table .table th {
            background: #fa8c16;
            color: white;
            border: none;
            padding: 20px;
            font-weight: 600;
        }

        .pricing-table .table td {
            padding: 15px 20px;
            border-bottom: 1px solid #f0f0f0;
            vertical-align: middle;
        }

        .pricing-table .table tr:hover {
            background: #f0f0f0;
        }

.domain-count {
    font-weight: 600;
    color: #333;
}

.discount-rate {
    font-weight: 700;
    color: #fa8c16;
    font-size: 1.1rem;
}

.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);
    }
