/* style/index-quick-registration.css */

.page-index-quick-registration {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-index-quick-registration__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-quick-registration__hero-section {
    background: linear-gradient(135deg, #0047AB 0%, #0028ff 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-quick-registration__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,blue_gold_pattern]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-index-quick-registration__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for emphasis */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-quick-registration__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-index-quick-registration__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-index-quick-registration__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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-quick-registration__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0047AB; /* Dark blue text on gold */
    border: 2px solid #FFD700;
}

.page-index-quick-registration__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-index-quick-registration__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-index-quick-registration__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-index-quick-registration__section-title {
    font-size: 2.5em;
    color: #0047AB; /* Dark blue */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-quick-registration__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-index-quick-registration__section-intro {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.page-index-quick-registration__features-section,
.page-index-quick-registration__steps-section,
.page-index-quick-registration__promo-section,
.page-index-quick-registration__app-section,
.page-index-quick-registration__faq-section,
.page-index-quick-registration__final-cta {
    padding: 80px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-index-quick-registration__features-section {
    background-color: #f0f2f5;
    box-shadow: none;
}

.page-index-quick-registration__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-index-quick-registration__feature-item {
    text-align: center;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-quick-registration__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-quick-registration__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-index-quick-registration__feature-title {
    font-size: 1.5em;
    color: #0047AB;
    margin-bottom: 15px;
}

.page-index-quick-registration__feature-description {
    color: #666;
    font-size: 1em;
}

.page-index-quick-registration__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-index-quick-registration__step-item {
    text-align: center;
    position: relative;
    padding: 30px;
    border-radius: 10px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-quick-registration__step-number {
    width: 50px;
    height: 50px;
    background-color: #0047AB;
    color: #FFD700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px;
    border: 3px solid #FFD700;
    box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-index-quick-registration__step-title {
    font-size: 1.6em;
    color: #0047AB;
    margin-bottom: 15px;
}

.page-index-quick-registration__step-description {
    color: #555;
    margin-bottom: 20px;
}

.page-index-quick-registration__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-quick-registration__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-index-quick-registration__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-quick-registration__promo-item {
    background-color: #f0f2f5;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-index-quick-registration__promo-item:hover {
    transform: translateY(-5px);
}

.page-index-quick-registration__promo-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-quick-registration__promo-title {
    font-size: 1.4em;
    color: #0047AB;
    margin-bottom: 10px;
}

.page-index-quick-registration__promo-description {
    color: #666;
}

.page-index-quick-registration__cta-promo {
    text-align: center;
    margin-top: 50px;
}

.page-index-quick-registration__app-section {
    background-color: #0047AB;
    color: #ffffff;
    padding: 80px 0;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-index-quick-registration__app-section .page-index-quick-registration__section-title {
    color: #FFD700;
}

.page-index-quick-registration__app-section .page-index-quick-registration__section-title::after {
    background-color: #FFD700;
}

.page-index-quick-registration__app-section .page-index-quick-registration__section-intro {
    color: #e0e0e0;
}

.page-index-quick-registration__app-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-index-quick-registration__app-info {
    flex: 1;
    min-width: 300px;
}

.page-index-quick-registration__app-info p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-index-quick-registration__app-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-index-quick-registration__app-info li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #ffffff;
}

.page-index-quick-registration__app-info li img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: brightness(0) saturate(100%) invert(88%) sepia(35%) saturate(702%) hue-rotate(339deg) brightness(102%) contrast(101%); /* Gold filter */
}

.page-index-quick-registration__app-image-wrapper {
    flex: 1;
    text-align: center;
    min-width: 300px;
}

.page-index-quick-registration__app-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-quick-registration__faq-list {
    margin-top: 40px;
}

.page-index-quick-registration__faq-item {
    background-color: #f0f2f5;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 5px solid #FFD700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-quick-registration__faq-question {
    font-size: 1.3em;
    color: #0047AB;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-index-quick-registration__faq-answer {
    font-size: 1em;
    color: #555;
    display: none; /* Hidden by default, JS will toggle */
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

.page-index-quick-registration__faq-question.active + .page-index-quick-registration__faq-answer {
    display: block;
}

.page-index-quick-registration__final-cta {
    background: linear-gradient(45deg, #FFD700 0%, #ffb854 100%); /* Gold gradient */
    color: #0047AB;
    text-align: center;
    padding: 80px 0;
    margin-bottom: 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-index-quick-registration__final-cta-title {
    font-size: 3em;
    color: #0047AB;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-index-quick-registration__final-cta-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #333;
}

.page-index-quick-registration__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
    border-width: 3px;
}

.page-index-quick-registration__btn--large.page-index-quick-registration__btn--primary {
    background-color: #0047AB;
    color: #FFD700;
    border-color: #0047AB;
}

.page-index-quick-registration__btn--large.page-index-quick-registration__btn--primary:hover {
    background-color: #003a8a;
    border-color: #003a8a;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-quick-registration__hero-title {
        font-size: 2.8em;
    }
    .page-index-quick-registration__hero-subtitle {
        font-size: 1.3em;
    }
    .page-index-quick-registration__section-title {
        font-size: 2em;
    }
    .page-index-quick-registration__app-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    .page-index-quick-registration__app-info {
        order: 2;
    }
    .page-index-quick-registration__app-image-wrapper {
        order: 1;
        margin-bottom: 30px;
    }
    .page-index-quick-registration__app-info ul {
        text-align: left;
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .page-index-quick-registration__hero-title {
        font-size: 2.2em;
    }
    .page-index-quick-registration__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-quick-registration__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-quick-registration__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-quick-registration__section-title {
        font-size: 1.8em;
    }
    .page-index-quick-registration__features-grid,
    .page-index-quick-registration__steps-grid,
    .page-index-quick-registration__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-index-quick-registration__final-cta-title {
        font-size: 2.2em;
    }
    .page-index-quick-registration__final-cta-description {
        font-size: 1.1em;
    }
    .page-index-quick-registration__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-index-quick-registration__hero-section {
        padding: 60px 0;
    }
    .page-index-quick-registration__hero-title {
        font-size: 1.8em;
    }
    .page-index-quick-registration__hero-subtitle {
        font-size: 0.95em;
    }
    .page-index-quick-registration__section-title {
        font-size: 1.5em;
    }
    .page-index-quick-registration__features-section,
    .page-index-quick-registration__steps-section,
    .page-index-quick-registration__promo-section,
    .page-index-quick-registration__app-section,
    .page-index-quick-registration__faq-section,
    .page-index-quick-registration__final-cta {
        padding: 50px 0;
    }
    .page-index-quick-registration__final-cta-title {
        font-size: 1.8em;
    }
    .page-index-quick-registration__final-cta-description {
        font-size: 1em;
    }
}