﻿
:root {
    /* Primary Colors - Inspired by Safety System */
    --brand-primary: #e74c3c; /* Vibrant red */
    --brand-secondary: #ff9f43; /* Orange */
    --brand-gradient: linear-gradient(135deg, #e74c3c, #ff9f43);
    --brand-gradient-hover: linear-gradient(135deg, #c0392b, #f39c12);
    /* Dark Theme Colors */
    --bg-dark: #0a0c0f;
    --bg-dark-light: #1a1e24;
    --bg-card-dark: rgba(255, 255, 255, 0.06);
    --border-dark: rgba(255,255,255,0.12);
    /* Light Theme Colors */
    --bg-light: #f8f9ff;
    --bg-white: #ffffff;
    --border-light: #eef1f5;
    /* Text Colors */
    --text-light: #ffffff;
    --text-light-muted: #cfcfcf;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    /* Shadows */
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.03);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.08);
    --shadow-brand: 0 10px 30px rgba(231, 76, 60, 0.2);
    /* Transitions */
    --transition-base: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
}

/* ===================================================
               HERO SECTION - Clean Professional Design
        =================================================== */
.hero-section {
    position: relative;
    background: var(--bg-dark);
    padding: 0;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .hero-background img {
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
        object-position: center;
        /* filter: brightness(0.3); */
    }

    .hero-background .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: linear-gradient(135deg, rgba(231, 76, 60, 0.85) 0%, rgba(255, 159, 67, 0.85) 100%); */
        mix-blend-mode: multiply;
    }

.hero-content {
    position: relative;
    width: 100%;
    z-index: 10;
    padding: 80px 0;
    color: var(--text-light);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.1s both;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-hero-primary {
    display: inline-block;
    background: white;
    color: var(--brand-primary);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

    .btn-hero-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        background: #f8f9fa;
        color: var(--brand-primary);
    }

.btn-hero-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

    .btn-hero-secondary:hover {
        border-color: white;
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-3px);
        color: white;
    }

/* ===================================================
               INTRO CARD - Redesigned
        =================================================== */
.intro-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.intro-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

    .intro-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--brand-gradient);
    }

.intro-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.intro-highlight {
    display: inline-block;
    padding: 0 5px;
    font-weight: 700;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-intro-primary {
    display: inline-block;
    background: var(--brand-gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-intro-primary:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-brand);
        color: white;
    }

.btn-intro-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

    .btn-intro-secondary:hover {
        background: var(--bg-light);
        border-color: var(--brand-primary);
        color: var(--brand-primary);
    }

/* ===================================================
               BENEFITS SECTION
        =================================================== */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.benefit-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-color: transparent;
    }

    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        background: var(--brand-gradient);
        transition: height 0.3s ease;
    }

    .benefit-card:hover::before {
        height: 100%;
    }

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(255, 159, 67, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--brand-gradient);
}

.benefit-icon i {
    font-size: 32px;
    color: var(--brand-primary);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
    color: white;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.benefit-link {
    color: var(--brand-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .benefit-link:hover {
        gap: 12px;
        color: var(--brand-secondary);
    }

/* ===================================================
               SECTION HEADERS
        =================================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: var(--brand-gradient);
    color: white;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: var(--shadow-brand);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

    .section-title span {
        background: var(--brand-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.section-underline {
    width: 100px;
    height: 4px;
    background: var(--brand-gradient);
    border-radius: 4px;
    margin: 20px auto 0;
}

/* ===================================================
               DOCUMENTS SECTION
        =================================================== */
.documents-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.doc-card {
    background: var(--bg-white);
    padding: 30px 25px;
    border-radius: 20px;
    height: 100%;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .doc-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--brand-gradient);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }

    .doc-card:hover::before {
        transform: scaleX(1);
    }

    .doc-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-color: transparent;
    }

.doc-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(255, 159, 67, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.doc-card:hover .doc-icon-wrap {
    background: var(--brand-gradient);
    transform: scale(1.1);
}

.doc-icon-wrap i {
    font-size: 36px;
    color: var(--brand-primary);
    transition: var(--transition-base);
}

.doc-card:hover .doc-icon-wrap i {
    color: white;
}

.doc-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.doc-card:hover p {
    color: var(--text-dark);
}

/* ===================================================
               ACCORDION SECTION (About)
        =================================================== */
.accordion-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.accordion-wrapper {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.accordion-custom .accordion-item {
    border: none;
    border-bottom: 1px solid var(--border-light);
    background: transparent;
    transition: var(--transition-base);
    border-radius: 12px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

    .accordion-custom .accordion-item:last-child {
        border-bottom: none;
    }

    .accordion-custom .accordion-item:hover {
        background: linear-gradient(135deg, rgba(231, 76, 60, 0.02), rgba(255, 159, 67, 0.02));
        transform: translateX(5px);
    }

.accordion-custom .accordion-button {
    padding: 20px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    background: transparent;
    box-shadow: none;
    border: none;
}

    .accordion-custom .accordion-button::after {
        content: "\F4FE";
        font-family: 'bootstrap-icons';
        background-image: none;
        font-size: 20px;
        background: var(--brand-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .accordion-custom .accordion-button:not(.collapsed)::after {
        content: "\F623";
    }

.accordion-custom .accordion-body {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
}

/* ===================================================
               PROCESS SECTION - Steps
        =================================================== */
.process-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.steps-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.step-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 30px 20px 25px;
    width: 180px;
    min-height: 240px;
    position: relative;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    text-align: center;
}

    .step-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-color: transparent;
    }

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 700;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.step-card .arrow-icon {
    color: var(--brand-primary);
    font-size: 20px;
    opacity: 0.5;
    transition: var(--transition-base);
}

.step-card:hover .arrow-icon {
    opacity: 1;
    transform: translateX(5px);
}

.step-card.final-step {
    background: var(--brand-gradient);
    border-color: transparent;
}

    .step-card.final-step .step-number {
        color: white;
        -webkit-text-fill-color: white;
        background: none;
    }

    .step-card.final-step p {
        color: white;
    }

    .step-card.final-step .arrow-icon {
        color: white;
        opacity: 0.8;
    }

/* ===================================================
               FAQ SECTION
        =================================================== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.faq-wrapper {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

/* ===================================================
               CTA SECTION
        =================================================== */
.cta-section {
    padding: 80px 0;
    background: var(--brand-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
    line-height: 1.7;
}

.btn-cta-primary {
    display: inline-block;
    background: white;
    color: var(--brand-primary);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    font-size: 16px;
    margin-right: 10px;
}

    .btn-cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        background: #f8f9fa;
    }

.btn-cta-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.5);
    font-size: 16px;
}

    .btn-cta-secondary:hover {
        border-color: white;
        background: rgba(255,255,255,0.1);
        transform: translateY(-3px);
    }

/* ===================================================
               ANIMATIONS
        =================================================== */
@@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================================
               RESPONSIVE
        =================================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .step-card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .intro-card {
        padding: 30px 25px;
    }

    .intro-text {
        font-size: 16px;
    }

    .intro-actions {
        flex-direction: column;
    }

    .btn-intro-primary, .btn-intro-secondary {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 32px;
    }

    .btn-cta-primary, .btn-cta-secondary {
        display: block;
        margin: 10px auto;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .step-card {
        width: 100%;
        max-width: 280px;
    }

    .faq-wrapper {
        padding: 25px 20px;
    }

    .accordion-wrapper {
        padding: 20px 15px;
    }
}

/* ===================================================
                           REGISTRATION FORM STYLES
                    =================================================== */
.registration-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.registration-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.registration-card {
    background: var(--bg-white);
    border-radius: 30px;
    padding: 45px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

    .registration-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--brand-gradient);
    }

    .registration-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 50px rgba(231, 76, 60, 0.12);
    }

/* Progress Bar */
.registration-progress {
    margin-bottom: 40px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-base);
    z-index: 2;
    background: var(--bg-white);
    padding: 0 10px;
}

    .step.active .step-icon {
        background: var(--brand-gradient);
        color: white;
        transform: scale(1.1);
        box-shadow: var(--shadow-brand);
    }

    .step.active span {
        color: var(--brand-primary);
        font-weight: 600;
    }

.step-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(255, 159, 67, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

    .step-icon i {
        font-size: 20px;
        color: var(--brand-primary);
    }

.progress-bar-custom {
    height: 4px;
    background: var(--border-light);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--brand-gradient);
    border-radius: 4px;
    transition: width 0.4s ease;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

    .form-step.active {
        display: block;
    }

.form-step-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
    position: relative;
}

    .form-step-title::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 80px;
        height: 2px;
        background: var(--brand-gradient);
    }

/* Form Groups */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 14px;
}

    .form-label i {
        color: var(--brand-primary);
        font-size: 16px;
    }

.required {
    color: var(--brand-primary);
    font-size: 18px;
    line-height: 1;
}

.form-control, .form-select {
    width: 100%;
    padding: 12px 18px;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    transition: var(--transition-base);
}

    .form-control:focus, .form-select:focus {
        outline: none;
        border-color: var(--brand-primary);
        box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
    }

    .form-control::placeholder {
        color: #aaa;
        font-size: 14px;
    }

.form-text {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Password Field */
.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

    .password-toggle:hover {
        color: var(--brand-primary);
    }

.password-strength {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.strength-bar {
    flex: 1;
    height: 4px;
    background: var(--border-light);
    border-radius: 4px;
    transition: var(--transition-base);
}

    .strength-bar.active {
        background: var(--brand-gradient);
    }

.strength-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 5px;
}

/* Confirmation Box */
.confirmation-box {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.02), rgba(255, 159, 67, 0.02));
    border-radius: 20px;
    padding: 25px;
    border: 1px solid var(--border-light);
}

.confirmation-item {
    margin-bottom: 25px;
}

    .confirmation-item:last-child {
        margin-bottom: 0;
    }

.item-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 16px;
}

/* Account Type Selector */
.account-type-selector {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.type-option {
    flex: 1;
    min-width: 120px;
}

    .type-option input[type="radio"] {
        display: none;
    }

    .type-option label {
        display: block;
        padding: 15px 20px;
        background: var(--bg-white);
        border: 2px solid var(--border-light);
        border-radius: 15px;
        text-align: center;
        font-weight: 500;
        color: var(--text-dark);
        cursor: pointer;
        transition: var(--transition-base);
    }

    .type-option input[type="radio"]:checked + label {
        border-color: var(--brand-primary);
        background: var(--brand-gradient);
        color: white;
        box-shadow: var(--shadow-brand);
    }

/* Checkboxes */
.terms-checkbox, .checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .terms-checkbox input[type="checkbox"],
    .checkbox-group input[type="checkbox"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
        accent-color: var(--brand-primary);
    }

    .terms-checkbox label,
    .checkbox-group label {
        color: var(--text-dark);
        font-size: 15px;
        cursor: pointer;
    }

.terms-link {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
}

    .terms-link:hover {
        color: var(--brand-secondary);
        text-decoration: underline;
    }

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-light);
}

.btn-prev, .btn-next, .btn-submit {
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-prev {
    background: transparent;
    color: var(--text-muted);
    border: 2px solid var(--border-light);
}

    .btn-prev:hover:not(:disabled) {
        border-color: var(--brand-primary);
        color: var(--brand-primary);
        transform: translateX(-3px);
    }

    .btn-prev:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.btn-next {
    background: var(--brand-gradient);
    color: white;
    box-shadow: var(--shadow-brand);
}

    .btn-next:hover {
        transform: translateX(3px);
        box-shadow: 0 15px 30px rgba(231, 76, 60, 0.3);
    }

.btn-submit {
    background: var(--brand-gradient);
    color: white;
    box-shadow: var(--shadow-brand);
    border: none;
}

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(231, 76, 60, 0.3);
    }

.nav-buttons {
    display: flex;
    gap: 10px;
}

/* Social Registration */
.social-registration {
    margin-top: 40px;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

    .divider::before,
    .divider::after {
        content: '';
        position: absolute;
        top: 50%;
        width: calc(50% - 100px);
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--border-light), transparent);
    }

    .divider::before {
        left: 0;
    }

    .divider::after {
        right: 0;
    }

    .divider span {
        background: var(--bg-white);
        padding: 0 20px;
        color: var(--text-muted);
        font-size: 14px;
    }

.social-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-social {
    flex: 1;
    min-width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-base);
    border: 2px solid var(--border-light);
    color: var(--text-dark);
    background: var(--bg-white);
}

    .btn-social:hover {
        transform: translateY(-3px);
        border-color: transparent;
        color: white;
    }

.btn-google:hover {
    background: #DB4437;
    box-shadow: 0 10px 20px rgba(219, 68, 55, 0.3);
}

.btn-facebook:hover {
    background: #4267B2;
    box-shadow: 0 10px 20px rgba(66, 103, 178, 0.3);
}

.btn-linkedin:hover {
    background: #0077B5;
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.3);
}

/* Login Link */
.login-link {
    text-align: center;
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 15px;
}

    .login-link a {
        color: var(--brand-primary);
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition-base);
    }

        .login-link a:hover {
            color: var(--brand-secondary);
            text-decoration: underline;
        }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .registration-card {
        padding: 30px 20px;
    }

    .step-icon {
        width: 35px;
        height: 35px;
    }

        .step-icon i {
            font-size: 16px;
        }

    .step span {
        font-size: 12px;
    }

    .form-step-title {
        font-size: 20px;
    }

    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .btn-prev, .btn-next, .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .nav-buttons {
        width: 100%;
    }

    .social-buttons {
        flex-direction: column;
    }

    .btn-social {
        width: 100%;
    }

    .account-type-selector {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .progress-steps .step span {
        display: none;
    }

    .step {
        padding: 0;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .type-option label {
        padding: 12px;
    }
}

/*============================*/

/* ===================================================
     PRICING SECTION STYLES
=================================================== */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .pricing-card.popular {
        border: 2px solid var(--primary-color, #0066b3);
        transform: scale(1.05);
        z-index: 2;
    }

        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color, #0066b3);
    color: white;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 102, 179, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.plan-badge {
    display: inline-block;
    background: rgba(0, 102, 179, 0.1);
    color: var(--primary-color, #0066b3);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.plan-name {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.plan-price {
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #64748b;
    vertical-align: top;
    line-height: 1;
}

.amount {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin: 0 5px;
}

.duration {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.plan-description {
    color: #64748b;
    font-size: 14px;
    margin-top: 10px;
}

.pricing-features {
    flex: 1;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

    .feature-item:last-child {
        border-bottom: none;
    }

    .feature-item i {
        font-size: 18px;
        flex-shrink: 0;
    }

    .feature-item .bi-check-circle-fill {
        color: #10b981;
    }

    .feature-item .bi-x-circle-fill {
        color: #ef4444;
    }

    .feature-item.highlight {
        background: rgba(0, 102, 179, 0.05);
        padding: 12px;
        border-radius: 10px;
        margin-top: 10px;
        font-weight: 500;
    }

.pricing-footer {
    text-align: center;
    margin-top: auto;
}

.btn-pricing {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary-color, #0066b3), var(--secondary-color, #004d99));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    cursor: pointer;
}

    .btn-pricing:hover {
        background: linear-gradient(135deg, var(--secondary-color, #004d99), var(--primary-color, #0066b3));
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 102, 179, 0.3);
        color: white;
    }

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
}

    .pricing-note p {
        color: #64748b;
        font-size: 15px;
        margin: 0;
    }

    .pricing-note i {
        color: var(--primary-color, #0066b3);
    }

/* Responsive */
@media (max-width: 991px) {
    .pricing-card.popular {
        transform: scale(1);
    }

        .pricing-card.popular:hover {
            transform: translateY(-10px);
        }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .amount {
        font-size: 36px;
    }
}

