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

/* Variables */
:root {
    --primary-color: #0A192F;
    --secondary-color: #FFD700;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --bg-dark: #1A2E44; /* Slightly lighter than primary for contrast */
    --accent-gold-dark: #B39700; /* Darker variant of secondary for text on light gold */
    --accent-blue-light: #6c7582; /* Lighter variant of primary for text on dark blue */
}

.page-register-login-registration-steps {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    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, var(--primary-color) 0%, #1A3A5A 100%);
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register-login-registration-steps .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
    opacity: 0.3;
}

@keyframes rotateGradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-register-login-registration-steps .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-register-login-registration-steps .hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-register-login-registration-steps .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-register-login-registration-steps .btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-register-login-registration-steps .btn-primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-register-login-registration-steps .btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 12px 25px;
}

.page-register-login-registration-steps .btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.page-register-login-registration-steps .btn-text {
    background: none;
    color: var(--secondary-color);
    padding: 8px 15px;
    font-size: 1em;
    border: 1px solid var(--secondary-color);
}

.page-register-login-registration-steps .btn-text:hover {
    color: var(--text-light);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.page-register-login-registration-steps .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-register-login-registration-steps .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-register-login-registration-steps .text-gold {
    color: var(--secondary-color);
}

.page-register-login-registration-steps .section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 60px auto;
    color: var(--text-dark);
}

.page-register-login-registration-steps .content-section {
    padding: 80px 0;
    background-color: var(--text-light);
}

.page-register-login-registration-steps .bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.page-register-login-registration-steps .bg-dark .section-title {
    color: var(--secondary-color);
}

.page-register-login-registration-steps .bg-dark .section-description {
    color: var(--text-light);
}

.page-register-login-registration-steps .grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-register-login-registration-steps .grid-layout .text-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-register-login-registration-steps .grid-layout .text-content ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: inherit;
}

.page-register-login-registration-steps .image-wrapper {
    text-align: center;
}

.page-register-login-registration-steps .section-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-register-login-registration-steps .steps-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    text-align: center;
}

.page-register-login-registration-steps .step-item {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-register-login-registration-steps .step-item:hover {
    transform: translateY(-5px);
}

.page-register-login-registration-steps .step-title {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-register-login-registration-steps .step-by-step {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.page-register-login-registration-steps .step-item-guide {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.page-register-login-registration-steps .step-number {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-register-login-registration-steps .step-content {
    flex-grow: 1;
}

.page-register-login-registration-steps .step-title-guide {
    font-size: 2em;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.page-register-login-registration-steps .step-content p {
    margin-bottom: 15px;
}

.page-register-login-registration-steps .step-content ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-register-login-registration-steps .step-content ul li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.page-register-login-registration-steps .step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-register-login-registration-steps .call-to-action-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-register-login-registration-steps .call-to-action-bottom p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.page-register-login-registration-steps .btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-register-login-registration-steps .important-notes .notes-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-register-login-registration-steps .important-notes .notes-list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23FFD700"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>') no-repeat left 5px;
    background-size: 24px;
    padding-left: 40px;
    margin-bottom: 25px;
    font-size: 1.15em;
    color: var(--text-light);
}

.page-register-login-registration-steps .important-notes .notes-list li strong {
    color: var(--secondary-color);
}

.page-register-login-registration-steps .faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-register-login-registration-steps .accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.page-register-login-registration-steps .accordion-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-register-login-registration-steps .accordion-header:hover {
    background-color: #1A3A5A;
}

.page-register-login-registration-steps .accordion-header .accordion-title {
    color: var(--text-light);
    margin: 0;
    font-size: 1.3em;
}

.page-register-login-registration-steps .accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.page-register-login-registration-steps .accordion-icon::before,
.page-register-login-registration-steps .accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.page-register-login-registration-steps .accordion-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.page-register-login-registration-steps .accordion-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.page-register-login-registration-steps .accordion-header[aria-expanded="true"] .accordion-icon::after {
    transform: translateX(-50%) rotate(90deg); /* Hide vertical line */
}

.page-register-login-registration-steps .accordion-content {
    padding: 0 25px;
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-register-login-registration-steps .accordion-content p {
    color: var(--text-dark);
    padding-bottom: 20px;
    margin-top: 0;
}

.page-register-login-registration-steps .accordion-header[aria-expanded="true"] + .accordion-content {
    max-height: 500px; /* Adjust as needed */
    padding-top: 20px;
}

.page-register-login-registration-steps .activities-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    text-align: center;
    margin-top: 40px;
}

.page-register-login-registration-steps .activity-item {
    background-color: var(--primary-color);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    color: var(--text-light);
}

.page-register-login-registration-steps .activity-item:hover {
    transform: translateY(-5px);
    background-color: #1A3A5A;
}

.page-register-login-registration-steps .activity-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--secondary-color));
}

.page-register-login-registration-steps .activity-title {
    font-size: 1.6em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-register-login-registration-steps .activity-item p {
    font-size: 1em;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-register-login-registration-steps .final-cta {
    font-size: 1.4em;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.page-register-login-registration-steps .download-app-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-register-login-registration-steps .hero-title {
        font-size: 2.8em;
    }

    .page-register-login-registration-steps .section-title {
        font-size: 2em;
    }

    .page-register-login-registration-steps .grid-layout {
        grid-template-columns: 1fr;
    }

    .page-register-login-registration-steps .grid-layout .image-wrapper {
        order: -1; /* Image appears above text on smaller screens */
    }

    .page-register-login-registration-steps .step-item-guide {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-register-login-registration-steps .step-number {
        margin-bottom: 20px;
    }

    .page-register-login-registration-steps .step-content ul {
        text-align: left;
    }

    .page-register-login-registration-steps .accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-register-login-registration-steps .activity-item {
        padding: 25px 15px;
    }
}

@media (max-width: 768px) {
    .page-register-login-registration-steps .hero-section {
        padding: 80px 0;
    }

    .page-register-login-registration-steps .hero-title {
        font-size: 2.2em;
    }

    .page-register-login-registration-steps .hero-subtitle {
        font-size: 1.1em;
    }

    .page-register-login-registration-steps .section-title {
        font-size: 1.8em;
    }

    .page-register-login-registration-steps .content-section {
        padding: 60px 0;
    }

    .page-register-login-registration-steps .steps-list {
        grid-template-columns: 1fr;
    }

    .page-register-login-registration-steps .step-title-guide {
        font-size: 1.6em;
    }

    .page-register-login-registration-steps .important-notes .notes-list li,
    .page-register-login-registration-steps .accordion-content p,
    .page-register-login-registration-steps .activity-item p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-register-login-registration-steps .hero-section {
        padding: 60px 0;
    }
    .page-register-login-registration-steps .hero-title {
        font-size: 1.8em;
    }
    .page-register-login-registration-steps .hero-subtitle {
        font-size: 0.9em;
    }
    .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-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-register-login-registration-steps .step-title-guide {
        font-size: 1.4em;
    }
    .page-register-login-registration-steps .accordion-header {
        font-size: 1em;
    }
    .page-register-login-registration-steps .final-cta {
        font-size: 1.1em;
    }
    .page-register-login-registration-steps .download-app-btn {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}