/* Process Cards Redesign */

/* Section Title Subtitle */
.sec-title__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #5C6671;
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .sec-title__subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
}

@media (max-width: 767px) {
    .sec-title__subtitle {
        font-size: 15px;
    }
}

.process-card {
    background: var(--body-color, #fff);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 231, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #198754, #6495ED);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.1);
    border-color: rgba(46, 77, 254, 0.2);
}

.process-card__icon {
    position: relative;
    margin-bottom: 25px;
}

.process-card__icon-bg {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(46, 77, 254, 0.1), rgba(100, 149, 237, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #198754;
    transition: all 0.4s ease;
    position: relative;
}

.process-card:hover .process-card__icon-bg {
    background: linear-gradient(135deg, rgba(46, 77, 254, 0.2), rgba(100, 149, 237, 0.2));
    transform: scale(1.1);
}

.process-card__step {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: #198754;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(46, 77, 254, 0.3);
}

.process-card__content {
    position: relative;
    z-index: 2;
}

.process-card__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #001F3F;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.process-card:hover .process-card__title {
    color: #198754;
}

.process-card__description {
    font-size: 16px;
    line-height: 1.6;
    color: #5C6671;
    margin-bottom: 20px;
    font-weight: 400;
}

.process-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(226, 231, 255, 0.6);
    color: #001F3F;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.3s ease;
}

.process-card:hover .feature-tag {
    background: rgba(46, 77, 254, 0.1);
    color: #198754;
}

/* Process CTA Section */
.process-cta {
    background: linear-gradient(135deg, #198754, #6495ED);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.process-cta__content {
    position: relative;
    z-index: 2;
}

.process-cta__title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 15px;
}

.process-cta__text {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 400;
}

.process-cta__btn {
    background: #fff;
    color: #198754;
    border: 2px solid #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.process-cta__btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.process-cta__btn svg {
    transition: transform 0.3s ease;
}

.process-cta__btn:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .process-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .process-card__icon-bg {
        width: 70px;
        height: 70px;
    }
    
    .process-card__title {
        font-size: 20px;
    }
    
    .process-card__description {
        font-size: 15px;
    }
    
    .process-cta {
        padding: 40px 30px;
    }
    
    .process-cta__title {
        font-size: 28px;
    }
    
    .process-cta__text {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .process-card {
        padding: 25px 20px;
    }
    
    .process-card__icon-bg {
        width: 60px;
        height: 60px;
    }
    
    .process-card__step {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .process-card__title {
        font-size: 18px;
    }
    
    .process-card__description {
        font-size: 14px;
    }
    
    .feature-tag {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .process-cta {
        padding: 30px 20px;
    }
    
    .process-cta__title {
        font-size: 24px;
    }
    
    .process-cta__text {
        font-size: 15px;
    }
    
    .process-cta__btn {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .process-card {
        padding: 20px 15px;
    }
    
    .process-card__icon-bg {
        width: 55px;
        height: 55px;
    }
    
    .process-card__title {
        font-size: 16px;
    }
    
    .process-card__description {
        font-size: 13px;
    }
    
    .process-cta__title {
        font-size: 20px;
    }
    
    .process-cta__text {
        font-size: 14px;
    }
}

/* Dark Theme Support */
[data-bs-theme="dark"] .sec-title__subtitle {
    color: #717A83;
}

[data-bs-theme="dark"] .process-card {
    background: #191F25;
    border-color: rgba(32, 41, 50, 0.3);
}

[data-bs-theme="dark"] .process-card:hover {
    border-color: rgba(46, 77, 254, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="dark"] .process-card__title {
    color: #CAD4E1;
}

[data-bs-theme="dark"] .process-card__description {
    color: #717A83;
}

[data-bs-theme="dark"] .feature-tag {
    background: rgba(32, 41, 50, 0.6);
    color: #CAD4E1;
}

[data-bs-theme="dark"] .process-card:hover .feature-tag {
    background: rgba(46, 77, 254, 0.2);
    color: #198754;
}

/* Meeting Form Styles */
.meeting-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
    color: #000000;
}

.meeting-form .form-control:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
    outline: none;
}

.meeting-form .form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.meeting-form .form-label {
    color: #000000;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.meeting-form .form-check-input:checked {
    background-color: #198754;
    border-color: #198754;
}

.meeting-form .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

.meeting-form .btn-loading {
    display: none;
}

.meeting-form .btn-loading.show {
    display: inline-flex !important;
}

.meeting-form .btn-text.hide {
    display: none !important;
}

.meeting-form .response .alert {
    border-radius: 10px;
    border: none;
    padding: 15px 20px;
    margin-top: 20px;
}

.meeting-form .alert-success {
    background: #d1e7dd;
    color: #0f5132;
    border-left: 4px solid #198754;
}

.meeting-form .alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.meeting-form .form-control.is-invalid {
    border-color: #dc3545;
}

.meeting-form .form-control.is-valid {
    border-color: #198754;
}

/* Ensure select dropdown text is black */
.meeting-form select.form-control {
    color: #000000;
}

.meeting-form select.form-control option {
    color: #000000;
    background: #ffffff;
}

.meeting-form .invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

/* Modal Enhancements */
#exampleModalToggle .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

#exampleModalToggle .modal-header {
    background: linear-gradient(135deg, #198754, #6495ED);
    color: white;
    border-radius: 20px 20px 0 0;
}

#exampleModalToggle .modal-title {
    color: white !important;
}

#exampleModalToggle .btn-close {
    filter: invert(1);
}

/* Dark Theme Support for Meeting Form */
[data-bs-theme="dark"] .meeting-form .form-control {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
}

[data-bs-theme="dark"] .meeting-form .form-control:focus {
    border-color: #198754;
    background: #2d3748;
}

[data-bs-theme="dark"] .meeting-form .form-label {
    color: #e2e8f0;
}

[data-bs-theme="dark"] #exampleModalToggle .modal-content {
    background: #1a202c;
    border: 1px solid #2d3748;
}

[data-bs-theme="dark"] #exampleModalToggle .modal-body {
    background: #1a202c;
    color: #e2e8f0;
}

[data-bs-theme="dark"] .meeting-form .form-control::placeholder {
    color: #718096;
}
