/* ===================================
   REGISTRATION PAGE STYLES
   =================================== */

/* Hero Section */
.reg-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1E3A8A 0%, #374151 100%);
}

.reg-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.reg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.90) 0%,
        rgba(55, 65, 81, 0.85) 100%
    );
    z-index: 2;
}

.reg-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 20px;
}

.reg-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.reg-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Section Base */
.reg-section {
    padding: 80px 0;
}

.reg-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reg-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

/* Categories Section */
.reg-categories {
    background: #FFFFFF;
}

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

.category-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #F9FAFB;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: #F3F4F6;
    transform: translateY(-5px);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1E3A8A, #10B981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #FFFFFF;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1E3A8A;
}

.reg-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.reg-text p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.7;
}

/* Approach Section */
.reg-approach {
    position: relative;
    background: #F9FAFB;
    overflow: hidden;
}

.reg-approach-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.reg-approach-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.90) 0%,
        rgba(55, 65, 81, 0.85) 100%
    );
    z-index: 2;
}

.reg-approach-content {
    position: relative;
    z-index: 3;
}

.reg-approach .reg-section-title {
    color: #FFFFFF;
}

.reg-approach-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.reg-approach-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.reg-approach-text p:last-child {
    margin-bottom: 0;
}

/* Types Section */
.reg-types {
    background: #FFFFFF;
}

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

.reg-type-card {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #E5E7EB;
}

.reg-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
    border-color: #1E3A8A;
}

.reg-type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E3A8A, #10B981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #FFFFFF;
    transition: all 0.4s ease;
}

.reg-type-card:hover .reg-type-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.reg-type-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1E3A8A;
    margin-bottom: 1rem;
}

.reg-type-text {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.reg-type-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1E3A8A;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reg-type-link:hover {
    color: #10B981;
    gap: 1rem;
}

.reg-type-link i {
    transition: transform 0.3s ease;
}

.reg-type-link:hover i {
    transform: translateX(5px);
}

/* Workflow Section */
.reg-workflow {
    position: relative;
    background: #F9FAFB;
    overflow: hidden;
}

.reg-workflow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.reg-workflow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.90) 0%,
        rgba(55, 65, 81, 0.85) 100%
    );
    z-index: 2;
}

.reg-workflow-content {
    position: relative;
    z-index: 3;
}

.reg-workflow .reg-section-title {
    color: #FFFFFF;
}

.workflow-steps {
    max-width: 900px;
    margin: 0 auto;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.workflow-step:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.workflow-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1E3A8A, #10B981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1E3A8A;
    line-height: 1.4;
    margin: 0;
}

/* CTA Section */
.reg-cta {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.reg-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.88) 0%,
        rgba(16, 185, 129, 0.82) 100%
    );
    z-index: 1;
}

.reg-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.reg-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.reg-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 768px) {
    .reg-hero {
        min-height: 55vh;
    }

    .reg-hero-title {
        font-size: 2.2rem;
    }

    .reg-hero-subtitle {
        font-size: 1.1rem;
    }

    .reg-section {
        padding: 60px 0;
    }

    .reg-section-title {
        font-size: 2rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .reg-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .workflow-step {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .reg-cta {
        padding: 70px 0;
    }

    .reg-cta-title {
        font-size: 2rem;
    }

    .reg-cta-text {
        font-size: 1.1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .reg-hero {
        min-height: 45vh;
    }

    .reg-hero-title {
        font-size: 1.8rem;
    }

    .reg-hero-subtitle {
        font-size: 1rem;
    }

    .reg-section {
        padding: 40px 0;
    }

    .reg-section-title {
        font-size: 1.7rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-item {
        padding: 1.5rem 1rem;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .reg-type-card {
        padding: 2rem 1.5rem;
    }

    .reg-type-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

    .workflow-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .reg-cta {
        padding: 60px 0;
    }

    .reg-cta-title {
        font-size: 1.7rem;
    }

    .reg-cta-text {
        font-size: 1rem;
    }
}
