/* ===== Meeting Page ===== */

/* ===== Content Section ===== */
.mt-content {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9f9 100%);
    padding: 80px 20px 100px;
}

.mt-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== Benefits Strip ===== */
.mt-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.mt-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mt-benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(45, 96, 120, 0.08), rgba(95, 184, 176, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d6078;
    flex-shrink: 0;
}

.mt-benefit div:last-child {
    display: flex;
    flex-direction: column;
}

.mt-benefit strong {
    font-size: 14px;
    font-weight: 700;
    color: #1a3d4e;
}

.mt-benefit span {
    font-size: 12px;
    color: #6b8a8e;
    font-weight: 500;
}

/* ===== Grid Layout ===== */
.mt-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* max-width: 780px;
    margin: 0 auto; */
}

/* ===== Form Side ===== */
.mt-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 44px 40px;
    border: 1px solid rgba(45, 96, 120, 0.06);
    box-shadow: 0 4px 24px rgba(45, 96, 120, 0.06);
}

.mt-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a3d4e;
    margin-bottom: 6px;
}

.mt-form-subtitle {
    font-size: 14px;
    color: #6b8a8e;
    margin-bottom: 32px;
}

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

.mt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.mt-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mt-field label {
    font-size: 13px;
    font-weight: 600;
    color: #3a5a5e;
}

.mt-field input,
.mt-field select,
.mt-field textarea {
    padding: 12px 16px;
    border: 1.5px solid #d1dde0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1a3d4e;
    background: #fafbfc;
    transition: all 0.2s ease;
    outline: none;
}

.mt-field input:focus,
.mt-field select:focus,
.mt-field textarea:focus {
    border-color: #3a7a92;
    box-shadow: 0 0 0 3px rgba(58, 122, 146, 0.1);
    background: #ffffff;
}

.mt-field input::placeholder,
.mt-field textarea::placeholder {
    color: #a0b4b8;
}

.mt-field textarea {
    resize: vertical;
    min-height: 80px;
}

.mt-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

/* DateTime row */
.mt-datetime-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mt-date-input,
.mt-time-input {
    padding: 12px 16px;
    border: 1.5px solid #d1dde0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1a3d4e;
    background: #fafbfc;
    transition: all 0.2s ease;
    outline: none;
    cursor: pointer;
}

.mt-date-input:focus,
.mt-time-input:focus {
    border-color: #3a7a92;
    box-shadow: 0 0 0 3px rgba(58, 122, 146, 0.1);
    background: #ffffff;
}

.mt-time-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

/* Submit button */
.mt-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2d6078, #3a7a92);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

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

.mt-submit-btn:hover::before {
    left: 100%;
}

.mt-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 96, 120, 0.3);
}

.mt-submit-btn:active {
    transform: translateY(0);
}

.mt-submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.mt-submit-btn.loading .mt-btn-text::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: mtSpin 0.6s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes mtSpin {
    to { transform: rotate(360deg); }
}

.mt-btn-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.mt-submit-btn:hover .mt-btn-icon {
    transform: translateX(4px);
}

/* Success state */
.mt-success {
    text-align: center;
    padding: 48px 24px;
}

.mt-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: mtPopIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes mtPopIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.mt-success h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3d4e;
    margin-bottom: 12px;
}

.mt-success p {
    font-size: 14px;
    color: #6b8a8e;
    max-width: 360px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.mt-success-link {
    font-size: 14px;
    font-weight: 600;
    color: #2d6078;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mt-success-link:hover {
    color: #5fb8b0;
}

/* ===== Sidebar ===== */
.mt-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mt-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(45, 96, 120, 0.06);
    box-shadow: 0 2px 16px rgba(45, 96, 120, 0.05);
}

.mt-info-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a3d4e;
    margin-bottom: 20px;
}

/* Steps */
.mt-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mt-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.mt-step-number {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2d6078, #3a7a92);
    color: white;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mt-step-content strong {
    font-size: 14px;
    font-weight: 700;
    color: #1a3d4e;
    display: block;
    margin-bottom: 2px;
}

.mt-step-content p {
    font-size: 12.5px;
    color: #6b8a8e;
    margin: 0;
    line-height: 1.5;
}

/* Manager card */
.mt-manager-card {
    text-align: center;
    background: linear-gradient(135deg, rgba(45, 96, 120, 0.03), rgba(95, 184, 176, 0.04));
}

.mt-manager-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 14px;
    border: 3px solid rgba(45, 96, 120, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.mt-manager-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mt-manager-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a3d4e;
    margin-bottom: 2px;
}

.mt-manager-role {
    font-size: 12px;
    font-weight: 600;
    color: #5fb8b0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.mt-manager-desc {
    font-size: 13px;
    color: #6b8a8e;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* Stats card */
.mt-stats-card {
    padding: 24px;
}

.mt-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mt-stat {
    text-align: center;
    padding: 16px 12px;
    background: linear-gradient(135deg, rgba(45, 96, 120, 0.04), rgba(95, 184, 176, 0.06));
    border-radius: 12px;
}

.mt-stat-num {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #2d6078;
    margin-bottom: 4px;
}

.mt-stat-label {
    font-size: 11px;
    color: #6b8a8e;
    font-weight: 500;
}

/* Alt contact card */
.mt-alt-card {
    padding: 24px;
}

.mt-alt-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #2d6078;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.mt-alt-link:first-of-type {
    margin-top: 0;
}

.mt-alt-link:hover {
    background: rgba(45, 96, 120, 0.06);
}

.mt-alt-link svg {
    color: #5fb8b0;
    flex-shrink: 0;
}

/* ===== Form validation ===== */
.mt-field.error input,
.mt-field.error select,
.mt-field.error textarea {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.08);
}

.mt-field .mt-error-msg {
    font-size: 11px;
    color: #e74c3c;
    font-weight: 500;
    margin-top: 2px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .mt-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mt-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .mt-info-card:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .mt-content {
        padding: 60px 16px 80px;
    }

    .mt-benefits {
        gap: 20px;
    }

    .mt-form-wrapper {
        padding: 32px 24px;
    }

    .mt-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mt-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mt-benefits {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        padding: 0 4px;
    }

    .mt-form-wrapper {
        padding: 24px 18px;
    }

    .mt-datetime-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mt-stat-row {
        grid-template-columns: 1fr;
    }
}
