/* Partnership Forms Styles */
.application-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(10, 25, 49, 0.02) 0%, rgba(10, 25, 49, 0.05) 100%);
}

/* Stepper Styles */
.stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    max-width: 800px;
    margin: 0 auto 50px;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--gray-medium);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gray-medium);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step.active .step-number {
    background: var(--green);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 216, 167, 0.3);
}

.step.completed .step-number {
    background: var(--navy);
    box-shadow: 0 4px 15px rgba(10, 25, 49, 0.3);
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: var(--gray-dark);
    transition: all 0.3s ease;
}

.step.active .step-label {
    color: var(--navy);
    font-weight: 600;
    transform: translateY(-2px);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-medium);
}

/* Form Sections */
.form-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--gold));
}

.form-section h3 {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-light);
    color: var(--navy);
    font-size: 24px;
    position: relative;
}

.form-section h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 80px;
    height: 2px;
    background: var(--green);
}

/* Enhanced Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--navy);
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-medium);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(0, 216, 167, 0.15);
    background: white;
    transform: translateY(-2px);
}

/* Progress Bar */
.progress-container {
    background: var(--gray-light);
    border-radius: 12px;
    height: 10px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--green), #00B894);
    border-radius: 12px;
    transition: width 0.5s ease;
    width: 0%;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Enhanced Agreement Styles */
.agreement-section {
    background: var(--gray-light);
    padding: 80px 0;
}

.agreement-container {
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.agreement-header {
    background: linear-gradient(135deg, var(--navy) 0%, #152642 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.agreement-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 216, 167, 0.1) 0%, transparent 70%);
}

.agreement-header h2 {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}

.agreement-header p {
    position: relative;
    z-index: 2;
    opacity: 0.9;
    font-size: 18px;
}

.agreement-content {
    padding: 50px;
    max-height: 600px;
    overflow-y: auto;
    border-bottom: 1px solid var(--gray-medium);
    background: linear-gradient(to bottom, transparent, var(--gray-light) 100px);
}

.agreement-text {
    line-height: 1.8;
    font-size: 15px;
}

.agreement-text h3 {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-light);
    color: var(--navy);
}

.agreement-text h4 {
    color: var(--navy);
    margin: 35px 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-light);
    font-size: 18px;
}

.agreement-text ul {
    margin: 20px 0;
    padding-right: 25px;
}

.agreement-text li {
    margin-bottom: 12px;
    position: relative;
    padding-right: 10px;
}

.agreement-text li::before {
    content: "•";
    color: var(--green);
    font-weight: bold;
    position: absolute;
    right: -18px;
    font-size: 20px;
}

.signature-block {
    margin-top: 50px;
    text-align: center;
}

.signature-line {
    border-bottom: 2px solid var(--gray-dark);
    margin: 25px auto;
    width: 350px;
    height: 40px;
}

/* Summary Section */
.summary-section {
    background: linear-gradient(135deg, var(--gray-light) 0%, #f8fafc 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid var(--gray-medium);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-medium);
    transition: background 0.3s ease;
}

.summary-item:hover {
    background: rgba(255, 255, 255, 0.5);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: var(--navy);
}

.summary-value {
    color: var(--gray-dark);
    text-align: left;
}

/* Awareness Section */
.awareness-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.awareness-header {
    text-align: center;
    margin-bottom: 30px;
}

.awareness-header h3 {
    color: var(--navy);
    margin-bottom: 15px;
}

.awareness-content {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.agreement-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    border-left: 4px solid var(--green);
}

.feature-icon {
    color: var(--green);
    font-size: 20px;
    margin-top: 2px;
}

.feature-content h5 {
    color: var(--navy);
    margin-bottom: 5px;
    font-size: 16px;
}

.feature-content p {
    color: var(--gray-dark);
    font-size: 14px;
    line-height: 1.5;
}

/* Enhanced Buttons */
.cta-button {
    background: linear-gradient(135deg, var(--green), #00B894);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 35px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 216, 167, 0.3);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 216, 167, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.secondary-button {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--gray-medium);
    padding: 12px 26px;
    border-radius: 35px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.secondary-button:hover {
    background: var(--gray-light);
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Agreement Actions */
.agreement-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.agreement-signature {
    padding: 40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .stepper {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .step {
        flex: 0 0 calc(33.333% - 20px);
    }
    
    .agreement-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-section,
    .awareness-section {
        padding: 25px 20px;
    }
    
    .agreement-content {
        padding: 30px 20px;
    }
    
    .agreement-actions {
        flex-direction: column;
    }
    
    .agreement-actions button {
        width: 100%;
    }
    
    .signature-line {
        width: 250px;
    }
    
    .stepper::before {
        display: none;
    }
    
    .step {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .form-section,
    .awareness-section {
        padding: 20px 15px;
    }
    
    .agreement-header {
        padding: 30px 20px;
    }
    
    .agreement-content {
        padding: 25px 15px;
    }
    
    .step {
        flex: 0 0 100%;
    }
}