﻿.transfer-hero {
    background: linear-gradient(135deg, #fa8c16 0%, #ff6b35 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

    .transfer-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .transfer-hero p {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto 40px;
    }

.transfer-search {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

    .transfer-search h3 {
        color: #333;
        margin-bottom: 20px;
        font-weight: 600;
    }

.search-input-group {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 8px 16px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

    .search-input-group:focus-within {
        border-color: #fa8c16;
    }

    .search-input-group input {
        flex: 1;
        border: none;
        outline: none;
        background: transparent;
        font-size: 18px;
        padding: 12px 0;
        color: #333;
    }

    .search-input-group .domain-suffix {
        color: #fa8c16;
        font-weight: 600;
        margin-left: 8px;
    }

.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;
}

    .transfer-btn:hover {
        background: #e67e0f;
    }

.alternative-link {
    text-align: center;
    margin-top: 20px;
}

    .alternative-link a {
        color: #fa8c16;
        text-decoration: none;
        font-weight: 500;
    }

.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;
    }

.steps-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.step-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;
}

.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;
}

.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefit-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    height: 100%;
    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: #f8f9fa;
}

.pricing-table {
    background: white;
    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: #f8f9fa;
        }

.domain-name {
    font-weight: 600;
    color: #333;
}

.transfer-price {
    font-weight: 700;
    color: #fa8c16;
    font-size: 1.1rem;
}

.renewal-price {
    color: #666;
    font-size: 0.9rem;
}

.requirements-section {
    padding: 80px 0;
    background: white;
}

.requirement-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #fa8c16;
}

.requirement-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.requirement-description {
    color: #666;
    line-height: 1.6;
}

.highlight {
    background: #fff3cd;
    color: #856404;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.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);
    }
