/* style/register-login-registration-steps.css */

.page-register-login-registration-steps {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #1A1A2E; /* Main dark background */
    line-height: 1.6;
}

.page-register-login-registration-steps .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-register-login-registration-steps .hero-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #3a002b 100%); /* Dark gradient for depth */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register-login-registration-steps .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark,subtle_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-register-login-registration-steps .hero-title {
    font-size: 3.5em;
    color: #E94560; /* Accent color for main title */
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

.page-register-login-registration-steps .hero-subtitle {
    font-size: 1.5em;
    color: #B0B0B0; /* Slightly lighter gray for subtitle */
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Buttons */
.page-register-login-registration-steps .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login-registration-steps .btn-primary {
    background-color: #E94560; /* Accent color for primary buttons */
    color: #FFFFFF;
}

.page-register-login-registration-steps .btn-primary:hover {
    background-color: #CF3B51; /* Darker accent on hover */
    transform: translateY(-3px);
}

.page-register-login-registration-steps .btn-secondary {
    background-color: #33334A; /* Darker secondary color */
    color: #E0E0E0;
    border: 1px solid #555577;
}

.page-register-login-registration-steps .btn-secondary:hover {
    background-color: #444466;
    transform: translateY(-3px);
}

/* Section Titles & Descriptions */
.page-register-login-registration-steps .section-title {
    font-size: 2.5em;
    color: #E94560;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 60px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(233, 69, 96, 0.3);
}

.page-register-login-registration-steps .section-description {
    font-size: 1.1em;
    color: #B0B0B0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

/* Registration Steps Section */
.page-register-login-registration-steps .registration-steps-section {
    padding: 80px 0;
}

.page-register-login-registration-steps .step-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-register-login-registration-steps .step-card {
    background-color: #2A2A3E; /* Slightly lighter dark background for cards */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3A3A5E;
}

.page-register-login-registration-steps .step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-register-login-registration-steps .step-icon {
    font-size: 2.5em;
    color: #E94560;
    background-color: #3A3A5E;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 3px solid #E94560;
    font-weight: bold;
}

.page-register-login-registration-steps .step-title {
    font-size: 1.8em;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-register-login-registration-steps .step-description {
    color: #C0C0C0;
    margin-bottom: 20px;
    font-size: 1em;
}

.page-register-login-registration-steps .step-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
}

.page-register-login-registration-steps .step-card ul li {
    color: #C0C0C0;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-register-login-registration-steps .step-card ul li::before {
    content: '•';
    color: #E94560;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

.page-register-login-registration-steps .step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #4A4A6E;
}

/* Benefits Section */
.page-register-login-registration-steps .benefits-section {
    background-color: #151525;
    padding: 80px 0;
    text-align: center;
}

.page-register-login-registration-steps .benefits-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-register-login-registration-steps .benefits-list li {
    background-color: #2A2A3E;
    border-radius: 10px;
    padding: 25px;
    flex: 1 1 calc(33% - 40px);
    min-width: 280px;
    max-width: 350px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #E94560;
    transition: background-color 0.3s ease;
}

.page-register-login-registration-steps .benefits-list li:hover {
    background-color: #3A3A5E;
}

.page-register-login-registration-steps .benefits-list li strong {
    color: #FFFFFF;
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.page-register-login-registration-steps .benefits-list li i.icon-check {
    color: #E94560;
    margin-right: 10px;
    font-size: 1.2em;
}

/* FAQ Section */
.page-register-login-registration-steps .faq-section {
    padding: 80px 0;
}

.page-register-login-registration-steps .faq-item {
    background-color: #2A2A3E;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #E94560;
}

.page-register-login-registration-steps .faq-question {
    font-size: 1.4em;
    color: #FFFFFF;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-register-login-registration-steps .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #E94560;
    transition: transform 0.3s ease;
}

.page-register-login-registration-steps .faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-register-login-registration-steps .faq-answer {
    color: #C0C0C0;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-register-login-registration-steps .faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

/* Call to Action Section */
.page-register-login-registration-steps .cta-section {
    background: linear-gradient(45deg, #E94560 0%, #CF3B51 100%);
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
    border-radius: 12px;
    margin: 60px auto;
    max-width: 1000px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-register-login-registration-steps .cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.page-register-login-registration-steps .cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-register-login-registration-steps .cta-section .btn-primary {
    background-color: #1A1A2E;
    color: #E94560;
    border: 2px solid #1A1A2E;
}

.page-register-login-registration-steps .cta-section .btn-primary:hover {
    background-color: #3A3A5E;
    color: #FFFFFF;
    border-color: #3A3A5E;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-register-login-registration-steps .hero-title {
        font-size: 3em;
    }
    .page-register-login-registration-steps .section-title {
        font-size: 2em;
    }
    .page-register-login-registration-steps .benefits-list li {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .page-register-login-registration-steps .hero-title {
        font-size: 2.5em;
    }
    .page-register-login-registration-steps .hero-subtitle {
        font-size: 1.2em;
    }
    .page-register-login-registration-steps .section-title {
        font-size: 1.8em;
    }
    .page-register-login-registration-steps .step-card-grid {
        grid-template-columns: 1fr;
    }
    .page-register-login-registration-steps .benefits-list li {
        flex: 1 1 100%;
    }
    .page-register-login-registration-steps .cta-title {
        font-size: 2em;
    }
    .page-register-login-registration-steps .cta-description {
        font-size: 1em;
    }
    .page-register-login-registration-steps .faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-register-login-registration-steps .hero-section,
    .page-register-login-registration-steps .registration-steps-section,
    .page-register-login-registration-steps .benefits-section,
    .page-register-login-registration-steps .faq-section,
    .page-register-login-registration-steps .cta-section {
        padding: 40px 0;
    }
    .page-register-login-registration-steps .hero-title {
        font-size: 2em;
    }
    .page-register-login-registration-steps .hero-subtitle {
        font-size: 1em;
    }
    .page-register-login-registration-steps .btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-register-login-registration-steps .section-title {
        font-size: 1.5em;
    }
    .page-register-login-registration-steps .step-icon {
        width: 60px;
        height: 60px;
        font-size: 2em;
    }
    .page-register-login-registration-steps .step-title {
        font-size: 1.5em;
    }
    .page-register-login-registration-steps .cta-title {
        font-size: 1.8em;
    }
}