/* ==================== PORTAL LAYOUT AND HEADER STYLES ==================== */

/* Modern Portal Home Styles */
.omc_portal_welcome {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    margin: 80px auto 60px auto;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.25);
    max-width: 1400px;
    width: 90%;
}

.omc_portal_welcome h3 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0 10px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.omc_portal_welcome .user_subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-top: 10px;
}

.omc_avatar_wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.omc_avatar_wrapper img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
}

/* Enhanced Portal Cards */
.o_portal_my_home .o_portal_docs {
    margin-top: 20px;
}

.o_portal_docs a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.o_portal_docs .card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: white;
    height: 100%;
}

.o_portal_docs .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.o_portal_docs .card-body {
    padding: 30px 20px;
    position: relative;
}

.o_portal_docs .card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.o_portal_docs h3 {
    color: #2d3748;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.o_portal_docs .text-muted {
    color: #718096 !important;
    font-size: 0.95rem;
}

.o_portal_docs img {
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
    transition: transform 0.3s ease;
}

.o_portal_docs .card:hover img {
    transform: scale(1.1) rotate(5deg);
}

/* Badge styling */
.o_portal_docs .badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 0.85rem;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

/* Portal Header Container Layout */
.omc_portal_header_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
}

.omc_portal_top_section {
    text-align: center;
    width: 100%;
}

.omc_portal_buttons_section {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Single button for individual users - 50% width */
.omc_portal_buttons_section.single_button {
    max-width: 500px;
}

/* Custom card styles for header buttons */
.omc_header_card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    display: block;
}

.omc_header_card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.omc_header_card h4 {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.omc_header_card p {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
}

.omc_header_card .card_icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.25));
    transition: transform 0.3s ease;
}

.omc_header_card:hover .card_icon {
    transform: scale(1.1);
}

/* ==================== RESPONSIVE DESIGN FOR PORTAL ==================== */

@media (max-width: 992px) {
    .omc_portal_welcome {
        width: 95%;
        padding: 50px 30px;
        margin: 60px auto 40px auto;
    }

    .omc_portal_buttons_section {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .omc_portal_welcome {
        width: 95%;
        padding: 40px 20px;
        margin: 50px auto 30px auto;
    }

    .omc_portal_welcome h3 {
        font-size: 1.8rem;
    }

    .omc_avatar_wrapper {
        width: 100px;
        height: 100px;
    }

    .omc_avatar_wrapper img {
        width: 90px;
        height: 90px;
    }

    .omc_portal_buttons_section {
        grid-template-columns: 1fr;
    }

    .omc_header_card {
        padding: 20px 15px;
    }
}

/* ==================== RECRUITMENT LIST VIEW STYLES ==================== */

/* Modern List View Styling */
.omc_list_view {
    max-width: 1400px;
    margin: 30px auto;
    padding: 20px;
}

/* Enhanced Filter Panel */
.omc_filter_panel {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    border: 2px solid #f0f0f0;
}

.omc_filter_header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.omc_filter_header h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 10px;
}

.omc_filter_icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.omc_filter_panel .form-select,
.omc_filter_panel .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.omc_filter_panel .form-select:focus,
.omc_filter_panel .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background-color: white;
    outline: none;
}

.omc_filter_panel .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.omc_filter_panel .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Results Count Badge */
.omc_results_badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: auto;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Enhanced Table Container */
.omc_table_container {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    overflow: hidden;
}

.omc_table_container table {
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.omc_table_container thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.omc_table_container thead th {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 18px 15px;
    text-align: center;
    border: none;
    letter-spacing: 0.3px;
}

.omc_table_container tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.omc_table_container tbody tr:last-child {
    border-bottom: none;
}

.omc_table_container tbody tr:hover {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.03) 0%, transparent 100%);
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.omc_table_container tbody td {
    padding: 18px 15px;
    font-size: 0.95rem;
    color: #2d3748;
    vertical-align: middle;
    border: none;
}

.omc_table_container tbody td a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.omc_table_container tbody td a:hover {
    color: #764ba2;
    transform: translateX(5px);
}

/* Enhanced Status Badges */
.omc_table_container .badge {
    padding: 6px 16px;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 20px;
}

.omc_table_container .bg-secondary {
    background: #e2e8f0 !important;
    color: #4a5568 !important;
}

.omc_table_container .bg-info {
    background: #bee3f8 !important;
    color: #2c5282 !important;
}

.omc_table_container .bg-success {
    background: #c6f6d5 !important;
    color: #22543d !important;
}

.omc_table_container .bg-danger {
    background: #fed7d7 !important;
    color: #742a2a !important;
}

/* Empty State */
.omc_empty_state {
    text-align: center;
    padding: 60px 20px;
    color: #718096;
}

.omc_empty_state svg {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.omc_empty_state h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 10px;
}

/* ==================== INDIVIDUAL PORTAL STYLES ==================== */

.omc_individual_portal {
    max-width: 900px;
    margin: 40px auto;
}

.omc_status_card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    margin-bottom: 30px;
}

.omc_status_card h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.omc_status_card p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.omc_application_card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.omc_application_card .card_header {
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.omc_application_card .card_header h3 {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.omc_application_card .info_row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f7fafc;
}

.omc_application_card .info_row:last-child {
    border-bottom: none;
}

.omc_application_card .info_label {
    color: #718096;
    font-weight: 600;
    font-size: 0.95rem;
}

.omc_application_card .info_value {
    color: #2d3748;
    font-weight: 500;
}

.omc_action_buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.omc_btn {
    padding: 15px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.omc_btn_primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.omc_btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    color: white;
}

.omc_btn_secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.omc_btn_secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Enhanced Form Navigation Buttons - PPS Style */
.omc_form_navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.omc_form_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid #e2e8f0;
}

.omc_form_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.omc_form_btn:hover::before {
    width: 300px;
    height: 300px;
}

.omc_form_btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.omc_form_btn span {
    position: relative;
    z-index: 1;
}

/* Next Button - Primary Style */
.omc_form_btn_next {
    background: white;
    color: #667eea;
    justify-content: center;
}

.omc_form_btn_next:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    border-color: transparent;
}

.omc_form_btn_next:hover svg {
    transform: translateX(3px);
}

/* Back Button - Subtle Gray Style */
.omc_form_btn_back {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(100, 116, 139, 0.25);
    justify-content: center;
}

.omc_form_btn_back:hover {
    transform: translateY(-2px) translateX(-2px);
    box-shadow: 0 8px 30px rgba(100, 116, 139, 0.4);
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
    color: white;
}

.omc_form_btn_back:hover svg {
    transform: translateX(-3px);
}

/* Submit Button - Success Green Style */
.omc_form_btn_submit {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
    justify-content: center;
    padding: 12px 35px;
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.omc_form_btn_submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    border-color: transparent;
}

.omc_form_btn_submit:hover svg {
    transform: scale(1.1);
}

/* Button Icon Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.omc_form_btn:active svg {
    animation: pulse 0.3s ease;
}

/* Disabled State */
.omc_form_btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.omc_status_badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.omc_status_draft { background: #e2e8f0; color: #4a5568; }
.omc_status_in_queue { background: #bee3f8; color: #2c5282; }
.omc_status_approved { background: #c6f6d5; color: #22543d; }
.omc_status_rejected { background: #fed7d7; color: #742a2a; }

/* ==================== ENHANCED FORM STYLES ==================== */

/* Ultra Modern Enhanced Form Styling */
.omc_enhanced_form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

/* Progress Indicator */
.form_progress_bar {
    position: sticky;
    top: 80px;
    z-index: 100;
    background: white;
    padding: 15px 0;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 12px;
}

.progress_track {
    height: 6px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress_fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.progress_text {
    text-align: center;
    color: #667eea;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 8px;
}

/* Card Styling with Animation */
.omc_enhanced_form .card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    background: white;
    animation: cardSlideIn 0.5s ease-out;
}

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

.omc_enhanced_form .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.omc_enhanced_form .card:hover {
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
}

.omc_enhanced_form .card:hover::before {
    opacity: 1;
}

/* Enhanced Card Header */
.omc_enhanced_form .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    padding: 25px 35px !important;
    border-radius: 0 !important;
    position: relative;
    overflow: hidden;
}

.omc_enhanced_form .card-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: translate(30%, -30%);
}

.omc_enhanced_form .card-header h3 {
    margin: 0 !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: white !important;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

/* Enhanced Card Body */
.omc_enhanced_form .card-body {
    padding: 40px 45px !important;
    background: white;
}

/* Form Group with Floating Effect */
.omc_enhanced_form .form-group {
    margin-bottom: 30px !important;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.omc_enhanced_form .form-group:last-child {
    border-bottom: none;
}

.omc_enhanced_form .form-group:hover {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.02) 0%, transparent 100%);
    padding-left: 10px;
    margin-left: -10px;
    border-radius: 8px;
}

/* Enhanced Labels */
.omc_enhanced_form .col-form-label {
    font-weight: 600 !important;
    color: #2d3748 !important;
    font-size: 1rem !important;
    padding-top: 10px !important;
    position: relative;
    display: inline-block;
}

.omc_enhanced_form .col-form-label::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.omc_enhanced_form .form-group:hover .col-form-label::before {
    height: 100%;
}

/* Ultra Enhanced Form Controls */
.omc_enhanced_form .form-control,
.omc_enhanced_form .form-select {
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-size: 1rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background-color: #f8fafc !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important;
}

.omc_enhanced_form .form-control:focus,
.omc_enhanced_form .form-select:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12), 0 4px 12px rgba(102, 126, 234, 0.15) !important;
    background-color: white !important;
    outline: none !important;
    transform: translateY(-2px);
}

.omc_enhanced_form .form-control[readonly],
.omc_enhanced_form .form-control:disabled,
.omc_enhanced_form .form-select:disabled {
    background-color: #e2e8f0 !important;
    border-color: #cbd5e0 !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

/* Enhanced Radio and Checkbox */
.omc_enhanced_form .form-check-input {
    width: 22px !important;
    height: 22px !important;
    border: 2px solid #667eea !important;
    margin-top: 0 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.omc_enhanced_form .form-check-input:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.omc_enhanced_form .form-check-input:checked {
    background-color: #667eea !important;
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.omc_enhanced_form .form-check-label {
    margin-left: 10px !important;
    color: #2d3748 !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: color 0.3s ease !important;
}

.omc_enhanced_form .form-check-input:checked + .form-check-label {
    color: #667eea !important;
}

/* TextArea Enhancement */
.omc_enhanced_form textarea.form-control {
    min-height: 120px !important;
    resize: vertical !important;
    line-height: 1.6 !important;
}

/* Submit Button Container Centering */
.submit-btn-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin: 30px auto !important;
}

.submit-btn-container .col-12 {
    text-align: center !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
}

.submit-btn-container button {
    margin: 0 auto !important;
    display: block !important;
}

/* Ultra specific submit button centering override */
.submit-btn-container .col-12,
.submit-btn-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

.submit-btn-container button[type="submit"] {
    margin: 0 auto !important;
    display: block !important;
    width: auto !important;
    flex: none !important;
}

/* Ultra Enhanced Submit Button */
.omc_enhanced_form .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    padding: 18px 60px !important;
    border-radius: 14px !important;
    font-weight: 600 !important;
    font-size: 1.15rem !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.omc_enhanced_form .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.omc_enhanced_form .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.omc_enhanced_form .btn-primary:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5) !important;
}

.omc_enhanced_form .btn-primary:active {
    transform: translateY(-1px) scale(0.98) !important;
}

/* Enhanced Alert */
.omc_enhanced_form .alert {
    border-radius: 14px !important;
    border: none !important;
    border-left: 4px solid #dc3545 !important;
    padding: 20px 25px !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15) !important;
}

/* Enhanced Section Number */
.omc_enhanced_form .section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    margin-right: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.omc_enhanced_form .card-header:hover .section-number {
    transform: rotate(360deg) scale(1.1);
    background: rgba(255,255,255,0.35);
}

/* ==================== RESPONSIVE DESIGN FOR FORMS ==================== */

@media (max-width: 768px) {
    .omc_individual_portal {
        padding: 10px;
    }

    .omc_status_card {
        padding: 30px 20px;
    }

    .omc_application_card {
        padding: 25px 20px;
    }

    .omc_action_buttons {
        flex-direction: column;
    }

    .omc_btn {
        width: 100%;
        justify-content: center;
    }

    /* Responsive Form Buttons */
    .omc_form_btn_back {
        width: 100%;
        max-width: 300px;
        height: 50px;
    }

    .omc_form_btn_submit {
        width: 100%;
        max-width: 350px;
        height: 55px;
    }

    .omc_form_navigation {
        flex-direction: column;
        gap: 12px;
    }

    .omc_enhanced_form {
        padding: 10px;
    }

    .omc_enhanced_form .card-body {
        padding: 25px 20px !important;
    }

    .omc_enhanced_form .card-header {
        padding: 20px 25px !important;
    }

    .omc_enhanced_form .btn-primary {
        width: 100% !important;
        padding: 16px 40px !important;
    }

    .form_progress_bar {
        top: 60px;
    }

    .omc_list_view {
        padding: 10px;
    }

    .omc_filter_panel {
        padding: 20px 15px;
    }

    .omc_filter_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .omc_results_badge {
        margin-left: 0;
    }

    .omc_table_container {
        overflow-x: auto;
    }
}

/* ==================== THANK YOU PAGE STYLES ==================== */

/* Enhanced Thank You Page Styling */
.omc_thank_you_page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 20px;
}

.omc_thank_you_container {
    max-width: 700px;
    background: white;
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

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

.omc_success_icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.omc_success_icon svg {
    width: 60px;
    height: 60px;
    color: white;
    animation: checkDraw 0.5s ease-out 0.5s both;
}

@keyframes checkDraw {
    from {
        stroke-dashoffset: 100;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.omc_thank_you_title {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.omc_thank_you_message {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
    animation: fadeIn 0.6s ease-out 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.omc_thank_you_info_box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
    animation: fadeIn 0.6s ease-out 0.6s both;
}

.omc_thank_you_info_box p {
    margin: 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

.omc_thank_you_info_box strong {
    color: #667eea;
}

.omc_thank_you_actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeIn 0.6s ease-out 0.7s both;
}

.omc_action_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.omc_action_btn svg {
    width: 20px;
    height: 20px;
}

.omc_action_btn_primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.omc_action_btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.omc_action_btn_secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.omc_action_btn_secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* ==================== PPS PAGE STYLES ==================== */

/* Modern PP's Page Styling */
.omc_pps_page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    position: relative;
}

/* Enhanced Home Icon/Back Button */
/* .omc_pps_back_button {
    position: absolute;
    top: -45px;
    left: 20px;
    z-index: 100;
}

.omc_pps_back_button a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #667eea;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.omc_pps_back_button a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    border-color: transparent;
}

.omc_pps_back_button img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

.omc_pps_back_button a:hover img {
    transform: translateX(-3px) scale(1.05);
} */

.omc_pps_hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.25);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.omc_pps_hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.omc_pps_hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.omc_pps_hero_content {
    position: relative;
    z-index: 1;
}

.omc_pps_icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.omc_pps_icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

.omc_pps_hero h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.omc_pps_hero p {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Grid */
.omc_pps_features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.omc_pps_feature_card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 2px solid transparent;
}

.omc_pps_feature_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.omc_pps_feature_icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.omc_pps_feature_card:hover .omc_pps_feature_icon {
    transform: scale(1.1) rotate(5deg);
}

.omc_pps_feature_icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.omc_pps_feature_card h3 {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.omc_pps_feature_card p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Info Section */
.omc_pps_info {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-left: 4px solid #667eea;
}

.omc_pps_info h2 {
    color: #2d3748;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.omc_pps_info h2::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.omc_pps_info p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
}

.omc_pps_cta {
    text-align: center;
    margin-top: 40px;
}

.omc_pps_cta_button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.omc_pps_cta_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    color: white;
    text-decoration: none;
}

/* ==================== ENHANCED NAVBAR STYLES ==================== */

.omc_enhanced_navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.omc_navbar_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 30px;
}

/* Navigation Links */
.omc_navbar_links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: flex-start;
}

.omc_nav_link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.omc_nav_link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.omc_nav_link:hover {
    color: white;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.omc_nav_link:hover::before {
    transform: translateX(0);
}

.omc_nav_link svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

.omc_nav_link span {
    position: relative;
    z-index: 1;
}

/* User Section */
.omc_navbar_user {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.omc_user_info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.omc_user_name {
    color: white;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}

.omc_user_badge {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.omc_user_badge_individual {
    background: rgba(16, 185, 129, 0.3);
}

.omc_user_avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.omc_user_avatar:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.omc_user_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.omc_avatar_placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.omc_logout_btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.omc_logout_btn:hover {
    background: rgba(239, 68, 68, 0.3);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.omc_logout_btn svg {
    width: 20px;
    height: 20px;
}

/* Login Button */
.omc_login_btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.omc_login_btn:hover {
    background: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.omc_login_btn svg {
    width: 20px;
    height: 20px;
}

/* Mobile Toggle */
.omc_mobile_toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.omc_mobile_toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.omc_mobile_toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.omc_mobile_menu {
    display: none;
    flex-direction: column;
    background: rgba(102, 126, 234, 0.98);
    -webkit-backdrop-filter: blur(10px);    
    backdrop-filter: blur(10px);
    padding: 20px;
    gap: 8px;
}

.omc_mobile_menu.active {
    display: flex;
}

.omc_mobile_link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.omc_mobile_link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    color: white;
}

.omc_mobile_link svg {
    width: 22px;
    height: 22px;
}

.omc_mobile_logout {
    background: rgba(239, 68, 68, 0.2);
    margin-top: 8px;
}

.omc_mobile_logout:hover {
    background: rgba(239, 68, 68, 0.3);
}

.omc_mobile_login {
    background: rgba(16, 185, 129, 0.2);
    margin-top: 8px;
}

.omc_mobile_login:hover {
    background: rgba(16, 185, 129, 0.3);
}

/* ==================== CONTACT FORM STYLES ==================== */

.omc_contactus_page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    min-height: 80vh;
}

.omc_contactus_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.omc_contactus_header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.6s ease-out;
}

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

.omc_contactus_header h1 {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.omc_contactus_header p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.omc_contactus_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.omc_contact_info {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    animation: fadeInLeft 0.6s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.omc_contact_info h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 30px;
}

.omc_contact_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 16px;
}

.omc_contact_item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    transform: translateX(5px);
}

.omc_contact_icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.omc_contact_icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.omc_contact_details {
    flex: 1;
}

.omc_contact_details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.omc_contact_details p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.omc_contact_details a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.omc_contact_details a:hover {
    color: #764ba2;
}

.omc_contact_form_wrapper {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    animation: fadeInRight 0.6s ease-out;
}

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

.omc_contact_form_wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 30px;
}

.omc_form_group {
    margin-bottom: 25px;
}

.omc_form_group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
}

.omc_form_group input,
.omc_form_group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.omc_form_group input:focus,
.omc_form_group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.omc_form_group textarea {
    resize: vertical;
    min-height: 150px;
}

.omc_submit_btn {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.omc_submit_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* ==================== COMPANY CONTACT FORM STYLES ==================== */

.omc_company_contactus_page {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    padding: 80px 0;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

.omc_company_contactus_page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.omc_company_container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.omc_company_header {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeInDown 0.6s ease-out;
}

.omc_premium_badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e1b4b;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.omc_company_header h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.omc_company_header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.omc_company_content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.omc_company_form_wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    padding: 55px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    animation: fadeInLeft 0.6s ease-out;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.omc_company_form_wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.omc_company_form_wrapper .subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 35px;
}

.omc_company_benefits {
    display: grid;
    gap: 25px;
    animation: fadeInRight 0.6s ease-out;
}

.omc_benefit_card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.omc_benefit_card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.omc_benefit_icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.omc_benefit_icon svg {
    width: 32px;
    height: 32px;
    color: #1e1b4b;
}

.omc_benefit_card h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.omc_benefit_card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.omc_vip_contact_info {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    padding: 30px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    margin-top: 30px;
}

.omc_vip_contact_info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.omc_vip_item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    margin-bottom: 15px;
    font-size: 16px;
}

.omc_vip_item svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

.omc_vip_item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.omc_vip_item a:hover {
    color: #fbbf24;
}

/* ==================== NAVIGATION BAR MOBILE RESPONSIVE ==================== */

@media (max-width: 968px) {
    .omc_navbar_links {
        display: none;
    }

    .omc_user_info {
        display: none;
    }

    .omc_mobile_toggle {
        display: flex;
    }

    .omc_navbar_container {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .omc_navbar_container {
        height: 60px;
        padding: 0 15px;
    }

    .omc_user_avatar {
        width: 36px;
        height: 36px;
        border-width: 2px;
    }

    .omc_logout_btn {
        width: 36px;
        height: 36px;
    }
}

/* ==================== CONTACT FORM RESPONSIVE ==================== */

@media (max-width: 968px) {
    .omc_contactus_content {
        grid-template-columns: 1fr;
    }

    .omc_contact_info,
    .omc_contact_form_wrapper {
        padding: 35px 25px;
    }

    .omc_contactus_header h1 {
        font-size: 32px;
    }
}

/* ==================== COMPANY CONTACT FORM RESPONSIVE ==================== */

@media (max-width: 968px) {
    .omc_company_content {
        grid-template-columns: 1fr;
    }

    .omc_company_form_wrapper {
        padding: 40px 30px;
    }

    .omc_company_header h1 {
        font-size: 36px;
    }
}

/* ==================== PPS PAGE RESPONSIVE ==================== */

@media (max-width: 768px) {
    .omc_pps_page {
        padding: 10px;
        margin: 30px auto;
    }

    .omc_pps_hero {
        padding: 40px 25px;
    }

    .omc_pps_hero h1 {
        font-size: 1.8rem;
    }

    .omc_pps_hero p {
        font-size: 1rem;
    }

    .omc_pps_features {
        grid-template-columns: 1fr;
    }

    .omc_pps_info {
        padding: 30px 20px;
    }
}

/* ==================== ENHANCED LOGIN PAGE STYLES ==================== */

/* Login Page Background */
.omc_login_page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.omc_login_page::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatAnimation 6s ease-in-out infinite;
}

.omc_login_page::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatAnimation 8s ease-in-out infinite reverse;
}

@keyframes floatAnimation {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

/* Login Container */
.omc_login_container {
    background: white;
    border-radius: 28px;
    padding: 50px 45px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    max-width: 480px;
    width: 100%;
    position: relative;
    z-index: 1;
    animation: slideInUp 0.6s ease-out;
}

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

/* Logo Section */
.omc_login_logo_section {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.omc_login_logo_wrapper {
    margin-bottom: 25px;
}

.omc_login_logo {
    max-height: 80px;
    max-width: 200px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
    transition: transform 0.3s ease;
}

.omc_login_logo:hover {
    transform: scale(1.05);
}

.omc_login_welcome {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 10px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.omc_login_subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

/* Enhanced Login Form */
.omc_enhanced_login_form {
    position: relative;
}

.omc_enhanced_login_form .mb-3 {
    margin-bottom: 25px !important;
    position: relative;
}

/* Form Icons */
.omc_form_icon {
    position: absolute;
    left: 15px;
    top: 42px;
    z-index: 1;
    pointer-events: none;
}

.omc_form_icon svg {
    width: 20px;
    height: 20px;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.omc_enhanced_login_form .mb-3:focus-within .omc_form_icon svg {
    color: #667eea;
}

/* Form Labels */
.omc_enhanced_login_form .form-label,
.omc_enhanced_login_form .col-form-label {
    font-weight: 600 !important;
    color: #475569 !important;
    font-size: 14px !important;
    margin-bottom: 8px !important;
    display: block;
}

/* Form Inputs */
.omc_enhanced_login_form .form-control {
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 14px 18px 14px 50px !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    background-color: #f8fafc !important;
}

.omc_enhanced_login_form .form-control:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1) !important;
    background-color: white !important;
    outline: none !important;
}

.omc_enhanced_login_form .form-control::placeholder {
    color: #94a3b8;
}

/* Database Selector (if exists) */
.omc_enhanced_login_form .input-group .form-control {
    padding-left: 18px !important;
}

.omc_enhanced_login_form .input-group .btn-secondary {
    border-radius: 0 12px 12px 0 !important;
    border: 2px solid #e2e8f0 !important;
    border-left: none !important;
    background: #f8fafc !important;
    color: #667eea !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.omc_enhanced_login_form .input-group .btn-secondary:hover {
    background: #667eea !important;
    color: white !important;
    border-color: #667eea !important;
}

/* Alert Messages */
.omc_enhanced_login_form .alert {
    border-radius: 12px !important;
    border: none !important;
    padding: 15px 20px !important;
    font-size: 14px !important;
    margin-bottom: 20px !important;
}

.omc_enhanced_login_form .alert-danger {
    background: #fee2e2 !important;
    color: #991b1b !important;
    border-left: 4px solid #dc2626 !important;
}

.omc_enhanced_login_form .alert-success {
    background: #d1fae5 !important;
    color: #065f46 !important;
    border-left: 4px solid #10b981 !important;
}

/* Login Submit Button */
.omc_login_submit_btn {
    width: 100% !important;
    padding: 16px 30px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: white !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
    position: relative;
    overflow: hidden;
}

.omc_login_submit_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.omc_login_submit_btn:hover::before {
    width: 300px;
    height: 300px;
}

.omc_login_submit_btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5) !important;
}

.omc_login_submit_btn:active {
    transform: translateY(0) !important;
}

/* Login Footer */
.omc_login_footer {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.omc_login_footer_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 8px;
}

.omc_login_footer_link:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
    transform: translateY(-2px);
}

.omc_login_footer_link svg {
    width: 18px;
    height: 18px;
}

/* Superuser Button Styling */
.omc_enhanced_login_form .btn-link {
    color: #667eea !important;
    font-size: 14px !important;
    text-decoration: none !important;
    padding: 10px !important;
    transition: all 0.3s ease !important;
}

.omc_enhanced_login_form .btn-link:hover {
    color: #764ba2 !important;
    text-decoration: underline !important;
}

/* Secondary Links (Signup, Reset Password, etc.) */
.omc_secondary_link {
    color: #667eea !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    padding: 8px 0 !important;
}

.omc_secondary_link:hover {
    color: #764ba2 !important;
    text-decoration: underline !important;
    transform: translateX(3px);
}

/* Auth Links Container (for signup and reset password links on login page) */
.omc_auth_links_container a {
    color: #667eea !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.omc_auth_links_container a:hover {
    color: #764ba2 !important;
    text-decoration: underline !important;
}

/* Success Message Container */
.omc_success_message_container {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.omc_success_message_container .alert-success {
    background: #d1fae5 !important;
    color: #065f46 !important;
    border-left: 4px solid #10b981 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    font-size: 16px !important;
    margin-bottom: 25px !important;
}

.omc_success_message_container a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border-radius: 12px;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.omc_success_message_container a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* ==================== LOGIN PAGE RESPONSIVE ==================== */

@media (max-width: 576px) {
    .omc_login_page {
        padding: 20px 15px;
    }

    .omc_login_container {
        padding: 40px 30px;
        border-radius: 24px;
    }

    .omc_login_welcome {
        font-size: 24px;
    }

    .omc_login_subtitle {
        font-size: 14px;
    }

    .omc_login_logo {
        max-height: 60px;
    }

    .omc_enhanced_login_form .form-control {
        padding: 12px 16px 12px 45px !important;
        font-size: 14px !important;
    }

    .omc_form_icon {
        top: 40px;
        left: 12px;
    }

    .omc_form_icon svg {
        width: 18px;
        height: 18px;
    }

    .omc_login_submit_btn {
        padding: 14px 25px !important;
        font-size: 15px !important;
    }

    .omc_login_footer {
        flex-direction: column;
        gap: 10px;
    }

    .omc_login_footer_link {
        width: 100%;
        justify-content: center;
    }
}

/* ==================== ENHANCED HOMEPAGE STYLES ==================== */

/* Hero Section */
.omc_hero_section {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding: 100px 20px;
}

.omc_hero_overlay {
    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 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,117.3C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.omc_hero_content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.omc_hero_title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.omc_hero_subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.omc_hero_buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.omc_hero_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.omc_hero_btn svg {
    width: 22px;
    height: 22px;
}

.omc_hero_btn_primary {
    background: white;
    color: #667eea;
}

.omc_hero_btn_primary:hover {
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.omc_hero_btn_secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.omc_hero_btn_secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* About Section */
.omc_about_section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.omc_section_header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.omc_section_title {
    font-size: 42px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.omc_section_description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
}

.omc_features_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.omc_feature_card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.omc_feature_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.omc_feature_card_highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.omc_feature_card_highlight .omc_feature_title,
.omc_feature_card_highlight .omc_feature_text {
    color: white;
}

.omc_feature_icon_wrapper {
    margin-bottom: 24px;
}

.omc_feature_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.omc_feature_icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.omc_feature_icon_highlight {
    background: white;
}

.omc_feature_icon_highlight svg {
    color: #667eea;
}

.omc_feature_title {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    font-style: italic;
}

.omc_feature_content {
    margin-bottom: 30px;
}

.omc_feature_text {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.omc_feature_card_highlight .omc_feature_text {
    color: rgba(255, 255, 255, 0.95);
}

.omc_feature_benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
    border-top: 2px solid #e2e8f0;
}

.omc_feature_card_highlight .omc_feature_benefits {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.omc_benefit_item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #475569;
}

.omc_feature_card_highlight .omc_benefit_item {
    color: white;
}

.omc_benefit_item svg {
    width: 24px;
    height: 24px;
    color: #667eea;
    flex-shrink: 0;
}

.omc_feature_card_highlight .omc_benefit_item svg {
    color: white;
}

/* CTA Section */
.omc_cta_section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.omc_cta_section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.omc_cta_content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.omc_cta_title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.omc_cta_subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.omc_cta_buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.omc_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.omc_cta_btn_white {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.omc_cta_btn_white:hover {
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.omc_cta_btn_outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.omc_cta_btn_outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .omc_features_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .omc_hero_title {
        font-size: 30px;
    }

    .omc_hero_subtitle {
        font-size: 18px;
    }

    .omc_hero_section {
        min-height: 300px;
        padding: 60px 20px;
    }

    .omc_section_title {
        font-size: 32px;
    }

    .omc_section_description {
        font-size: 16px;
    }

    .omc_about_section,
    .omc_cta_section {
        padding: 60px 20px;
    }

    .omc_features_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .omc_feature_card {
        padding: 30px;
    }

    .omc_feature_title {
        font-size: 24px;
    }

    .omc_cta_title {
        font-size: 36px;
    }

    .omc_cta_subtitle {
        font-size: 18px;
    }

    .omc_hero_buttons,
    .omc_cta_buttons {
        flex-direction: column;
        width: 100%;
    }

    .omc_hero_btn,
    .omc_cta_btn {
        width: 100%;
        justify-content: center;
    }
}

/* ====================================
   CONTACT US PAGE STYLES
   ==================================== */

/* Contact Page Container */
.omc_contactus_page {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    min-height: 100vh;
    padding-bottom: 80px;
}

/* Hero Header Section */
.omc_contact_hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.omc_contact_hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.omc_contact_hero_content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.omc_contact_hero_title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.omc_contact_hero_subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 300;
}

/* Premium Badge for Company Page */
.omc_premium_badge_hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.omc_premium_badge_hero svg {
    width: 18px;
    height: 18px;
    fill: #ffd700;
}

/* Main Content Area */
.omc_contact_main_content {
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

/* Modern Card Design */
.omc_modern_card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.omc_modern_card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Card Header */
.omc_card_header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.omc_card_header h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.omc_header_icon {
    width: 32px;
    height: 32px;
    fill: white;
    flex-shrink: 0;
}

.omc_header_subtitle {
    margin: 8px 0 0 0;
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 400;
}

/* Card Body */
.omc_card_body {
    padding: 40px;
}

/* Form Styling */
.omc_modern_form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Input Group */
.omc_modern_input_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.omc_modern_input_group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

/* Input with Icon */
.omc_input_with_icon {
    position: relative;
    display: flex;
    align-items: center;
}

.omc_input_with_icon svg {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    fill: #667eea;
    z-index: 1;
    pointer-events: none;
}

.omc_input_with_icon input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.omc_input_with_icon input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.omc_input_with_icon input::placeholder {
    color: #a0aec0;
}

/* Textarea */
.omc_modern_textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.omc_modern_textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.omc_modern_textarea::placeholder {
    color: #a0aec0;
}

/* Submit Button */
.omc_modern_submit_btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.omc_modern_submit_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.omc_modern_submit_btn:active {
    transform: translateY(0);
}

.omc_modern_submit_btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Info Card (Sidebar) */
.omc_info_card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.omc_info_card .omc_card_header {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.omc_info_card .omc_card_body {
    padding: 30px;
}

/* Info Items */
.omc_info_item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.omc_info_item:last-child {
    margin-bottom: 0;
}

.omc_info_icon_wrapper {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.omc_info_icon_wrapper svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.omc_info_text h3 {
    margin: 0 0 6px 0;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.95;
}

.omc_info_text p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Info Note */
.omc_info_note {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    margin-top: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.omc_info_note p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* ====================================
   PREMIUM COMPANY CONTACT STYLES
   ==================================== */

/* Premium Hero Variant */
.omc_company_hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Premium Card */
.omc_premium_card {
    border: 2px solid #667eea;
}

.omc_premium_card:hover {
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

/* Premium Header */
.omc_premium_header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 35px;
}

.omc_premium_header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

/* Premium Submit Button */
.omc_premium_submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

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

.omc_premium_submit:hover::before {
    left: 100%;
}

.omc_premium_submit svg {
    fill: #ffd700;
}

/* Premium Info Card */
.omc_premium_info {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border: 2px solid #667eea;
}

.omc_premium_info .omc_card_header {
    background: rgba(102, 126, 234, 0.15);
}

/* Premium Icons */
.omc_premium_icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Premium Note */
.omc_premium_note {
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.omc_premium_note::before {
    content: '\2605';
    font-size: 1.2rem;
    color: #ffd700;
    margin-right: 8px;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 992px) {
    .omc_contact_hero {
        padding: 60px 0 40px;
    }

    .omc_contact_hero_title {
        font-size: 2.5rem;
    }

    .omc_contact_hero_subtitle {
        font-size: 1.1rem;
    }

    .omc_card_body {
        padding: 30px;
    }

    .omc_contact_main_content {
        margin-top: -30px;
    }
}

@media (max-width: 768px) {
    .omc_contact_hero {
        padding: 50px 0 30px;
    }

    .omc_contact_hero_title {
        font-size: 2rem;
    }

    .omc_contact_hero_subtitle {
        font-size: 1rem;
    }

    .omc_card_header {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }

    .omc_card_header h2 {
        font-size: 1.5rem;
    }

    .omc_card_body {
        padding: 25px;
    }

    .omc_premium_header h2 {
        font-size: 1.6rem;
    }

    .omc_contact_main_content {
        margin-top: -20px;
    }

    .omc_modern_submit_btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .omc_contact_hero_title {
        font-size: 1.75rem;
    }

    .omc_card_body {
        padding: 20px;
    }

    .omc_info_card .omc_card_body {
        padding: 20px;
    }

    .omc_input_with_icon input {
        padding: 12px 14px 12px 44px;
    }

    .omc_modern_textarea {
        padding: 12px 14px;
    }
}
