﻿.top-header .navbar .dropdown-menu {
    border: 1px solid #cccccc;
}

.area-emphasize * {
    font-size: 125%;
    border-width: 3px !important;  
}

.mess-what-we-have-section {
    padding-top: 85px;
    padding-bottom: 85px;
    background-color: #f1f1f1;
}

.mess-button {
    background-color: #ffffff !important;
    border-color: #ed6302 !important;
    border: 1px solid;
    color: #555555 !important;
    border-radius: 10px !important;
    padding: 10px 27px 20px 27px;    
    height: 35px;
    line-height: 15px;
    transition: 0.5s;
}

    .mess-button:hover {
        background-color: #ed6302 !important;
        border-color: #e74c3c !important;
        color: #ffffff !important;
        transition: 0.5s;
    }

.mess-button-bulge {
    background-color: #ffffff !important;
    border-color: #ed6302 !important;
    border: 1px solid;
    color: #706555 !important;
    border-radius: 10px !important;
    padding: 10px 27px 15px;
    min-height: 35px;
    line-height: 15px;
    transition: 0.5s;
}

    .mess-button-bulge:hover {
        background-color: #ed6302 !important;
        border-color: #e74c3c !important;
        color: #ecede9 !important;
        transition: 0.5s;
        cursor: pointer;
    }

.mess-button-nav {
    font-family: 'Santral-Bold';
    border: 1px solid #eb5528;
    padding: 10px 20px;
    border-radius: 5px;
    background: #ed6302;
    text-decoration: unset;
    font-size: 18px;    
    font-weight: 600;
    color: white;
    margin-left: 15px;
    margin-right: 60px;
}

    .mess-button-nav:hover {
        box-shadow: 0px 0px 11px 0px #0c4572;
        background: #ecf0f1;
        color: #262723 !important;
        transform: translate(4px, 4px);
        border-color: #ecf0f1;
    }

.modal-sm {
    max-width: 30vw !important;
}

/* MESS Custom Modal System */
.mess-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: messModalFadeIn 0.3s ease;
}

.mess-modal {
    background: white;
    border-radius: 10px;
    min-width: 400px;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: messModalSlideIn 0.3s ease;
    overflow: hidden;
}

.mess-modal-header {
    padding: 20px 25px 15px;
    background: linear-gradient(135deg, #ed6302 0%, #eb5528 100%);
    border-bottom: none;
}

    .mess-modal-header h4 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        color: white;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

.mess-modal-body {
    padding: 25px;
    background: #fafafa;
}

    .mess-modal-body p {
        margin: 0;
        font-size: 16px;
        line-height: 1.5;
        color: #555;
    }

.mess-modal-footer {
    padding: 15px 25px 25px;
    text-align: right;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.mess-modal-btn {
    padding: 10px 20px;
    border: 1px solid;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-left: 10px;
    min-width: 80px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.mess-modal-btn-primary {
    background: #ed6302;
    color: white;
    border-color: #ed6302;
}

    .mess-modal-btn-primary:hover {
        background: #d55502;
        border-color: #d55502;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(237, 99, 2, 0.3);
    }

.mess-modal-btn-secondary {
    background: #ffffff;
    color: #555555;
    border-color: #ddd;
}

    .mess-modal-btn-secondary:hover {
        background: #f8f9fa;
        border-color: #adb5bd;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(108, 117, 125, 0.2);
    }

.mess-modal-btn-danger {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

    .mess-modal-btn-danger:hover {
        background: #c82333;
        border-color: #bd2130;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    }

.mess-modal-btn-success {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

    .mess-modal-btn-success:hover {
        background: #218838;
        border-color: #1e7e34;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    }

@keyframes messModalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes messModalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* MESS Loading Spinner */
.mess-page-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: messModalFadeIn 0.3s ease;
}

.mess-loading-spinner {
    text-align: center;
    color: white;
}

    .mess-loading-spinner .spinner {
        width: 50px;
        height: 50px;
        border: 4px solid rgba(237, 99, 2, 0.3);
        border-left: 4px solid #ed6302;
        border-radius: 50%;
        animation: messSpinnerRotate 1s linear infinite;
        margin-bottom: 15px;
    }

    .mess-loading-spinner p {
        margin: 0;
        font-size: 16px;
        color: #ed6302;
        font-weight: 500;
    }

@keyframes messSpinnerRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mess-modal {
        min-width: 90%;
        max-width: 95%;
        margin: 0 10px;
    }

    .mess-modal-header {
        padding: 15px 20px 10px;
    }

    .mess-modal-body {
        padding: 20px;
    }

    .mess-modal-footer {
        padding: 10px 20px 20px;
    }

    .mess-modal-btn {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 70px;
        margin-left: 5px;
    }
}

/* Alert styles for form validation */
.mess-alert-msg {
    display: none;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

.mess-alert-msg-red {
    display: none;
    color: #e12330;
    font-size: 12px;
    margin-top: 5px;
}

.mess-alert-msg-doc {
    display: none;
    color: #e12330;
    font-size: 12px;
    margin-top: 5px;
}
