/* Typography */
.montserrat-font {
    font-family: 'Montserrat', sans-serif;
}

/* Registration Process Main Section */
.reg-process-main {
    background-color: #fff;
    color: #333;
}

/* Steps Section */
.reg-steps-section {
    padding: 60px 0;
}

.relative-container {
    position: relative;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    transition: color 0.3s, transform 0.3s;
}

.back-btn:hover {
    color: #c8102e;
    transform: translateX(-5px);
}

.back-arrow {
    margin-right: 8px;
    font-size: 18px;
}

.reg-page-title {
    font-size: 36px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.reg-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reg-steps-list li {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #1a202c;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.reg-steps-list li:hover {
    background-color: #fff;
    transform: translateX(15px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: #f0f4f8;
}

.step-icon-img {
    margin-right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0f2;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(200, 16, 46, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reg-steps-list li:hover .step-icon-img {
    background: #c8102e;
    transform: rotate(10deg) scale(1.15);
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.3);
}

.reg-steps-list li:hover .step-icon-img img {
    filter: brightness(0) invert(1);
}

.step-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

/* Timeline Box Section */
.reg-timeline-section {
    background-color: #1e3a8a; /* Deep blue from image */
    padding: 60px 0;
}

.timeline-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.timeline-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.timeline-box p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.timeline-box .highlight {
    font-size: 28px;
    font-weight: 800;
    margin: 25px 0;
    color: #fff;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.btn-red-solid {
    display: inline-block;
    background: linear-gradient(135deg, #c8102e, #a00d23);
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.btn-red-solid:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(200, 16, 46, 0.5);
    background: linear-gradient(135deg, #a00d23, #c8102e);
}

/* Partnership Algorithm Section */
.partnership-algo-section {
    padding: 80px 0;
    background-color: #f8fafc;
    text-align: center;
}

.algo-title {
    font-size: 28px;
    color: #c8102e;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.algo-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.algo-card {
    background-color: #fff;
    width: 280px;
    height: 320px;
    padding: 40px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 4px solid transparent;
}

.algo-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(200, 16, 46, 0.12);
    border-top-color: #c8102e;
}

.algo-card-content p {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.algo-card:hover .algo-card-content p:first-child {
    color: #c8102e;
}

.algo-subtext {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #4a5568 !important;
}

.algo-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 2px solid #c8102e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #c8102e;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.algo-card:hover .algo-number {
    background-color: #c8102e;
    color: #fff;
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 5px 15px rgba(200, 16, 46, 0.4);
}

/* Consultation Form Section */
.consultation-form-section {
    padding: 80px 0;
    background-color: #fff;
}

.consultation-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #1e3a8a; /* Changed to blue */
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.4s ease;
}

.consultation-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.form-title {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 16px;
    color: #e2e8f0;
    margin-bottom: 40px;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-modern {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    color: #4a5568;
    background-color: #fff;
    outline: none;
    transition: border-color 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.input-modern:focus {
    border-color: #6b46c1;
}

.phone-input-group {
    display: flex;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.phone-input-group:focus-within {
    border-color: #6b46c1;
}

.country-code {
    display: flex;
    align-items: center;
    padding: 0 15px;
    background-color: #f8fafc;
    border-right: 1px solid #e2e8f0;
    gap: 8px;
    color: #4a5568;
}

.country-code img {
    width: 24px;
    height: 16px;
    object-fit: cover;
}

.phone-input {
    border: none;
    border-radius: 0;
}

.phone-input:focus {
    border-color: transparent;
}

.btn-red-form-solid {
    background-color: #c8102e;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
}

.btn-red-form-solid:hover {
    background-color: #a00d23;
}

.privacy-policy-text {
    font-size: 12px;
    color: #cbd5e0;
    text-align: center;
    margin-top: 15px;
    line-height: 1.5;
}