/**
 * Meeting Scheduler Styles - Refonte Complète
 *
 * Styles for the [experiences] shortcode - Meeting scheduling widget
 * Design moderne et cohérent avec l'identité JMV
 *
 * @package JMV_Child
 */

/* ==========================================================================
   CSS Variables - Design System
   ========================================================================== */

.jmv-meeting-container {
    --jmv-primary: #142EA8;
    --jmv-primary-dark: #0d1f7a;
    --jmv-primary-light: #e8ecf8;
    --jmv-primary-lighter: #f1f4fb;
    --jmv-text-dark: #0D1B4C;
    --jmv-text-muted: #64748b;
    --jmv-text-light: #94a3b8;
    --jmv-disabled: #94a3b8;
    --jmv-disabled-bg: #e2e8f0;
    --jmv-border: #cbd5e1;
    --jmv-border-light: #e2e8f0;
    --jmv-bg-widget: #f1f5f9;
    --jmv-bg-input: #ffffff;
    --jmv-success: #059669;
    --jmv-success-light: #d1fae5;
    --jmv-error: #dc2626;
    --jmv-shadow-sm: 0 1px 2px rgba(20, 46, 168, 0.05);
    --jmv-shadow-md: 0 4px 12px rgba(20, 46, 168, 0.08);
    --jmv-shadow-lg: 0 8px 24px rgba(20, 46, 168, 0.12);
    --jmv-shadow-xl: 0 12px 32px rgba(20, 46, 168, 0.16);
    --jmv-radius-sm: 6px;
    --jmv-radius-md: 10px;
    --jmv-radius-lg: 16px;
    --jmv-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Container & Layout
   ========================================================================== */

.jmv-meeting-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: inherit;
}

.jmv-meeting-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.jmv-scheduler-wrapper {
    flex: 0 0 440px;
    max-width: 440px;
    background: var(--jmv-bg-widget);
    border-radius: var(--jmv-radius-lg);
    padding: 32px;
    box-shadow: var(--jmv-shadow-lg);
    border: 1px solid var(--jmv-border-light);
}

/* ==========================================================================
   Marketing Content (Left Column)
   ========================================================================== */

.jmv-meeting-title {
    margin-bottom: 24px;
    line-height: 1.15;
}

.jmv-meeting-title span {
    display: block;
    font-size: 22px;
    color: var(--jmv-text-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.jmv-meeting-title strong {
    display: block;
    font-size: 34px;
    color: var(--jmv-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.jmv-meeting-divider {
    width: 70px;
    height: 4px;
    background: var(--jmv-primary);
    margin: 28px 0;
    border-radius: 2px;
}

.jmv-meeting-text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--jmv-text-muted);
    margin-bottom: 32px;
}

.jmv-meeting-text a {
    color: var(--jmv-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--jmv-transition);
}

.jmv-meeting-text a:hover {
    color: var(--jmv-primary-dark);
}

.jmv-meeting-cta {
    margin-bottom: 24px;
    text-align: center;
}

.jmv-btn-call {
    display: inline-block;
    background: var(--jmv-primary);
    color: #fff !important;
    padding: 18px 32px;
    border-radius: var(--jmv-radius-md);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    text-align: center;
    transition: all var(--jmv-transition);
    line-height: 1.4;
    box-shadow: var(--jmv-shadow-md);
}

.jmv-btn-call:hover {
    background: var(--jmv-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--jmv-shadow-lg);
}

.jmv-btn-call:active {
    transform: translateY(0);
}

.jmv-btn-call span {
    display: block;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jmv-meeting-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 24px;
    font-weight: 700;
    color: var(--jmv-text-dark);
}

.jmv-meeting-phone svg {
    width: 30px;
    height: 30px;
    fill: var(--jmv-text-dark);
}

/* Full Width Comparison Image (Above Columns) */
.jmv-meeting-comparison-fullwidth {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.jmv-comparison-image-fullwidth {
    width: 100%;
    height: auto;
    border-radius: var(--jmv-radius-lg);
    box-shadow: var(--jmv-shadow-xl);
}

/* Marketing Content - New Sections */
.jmv-meeting-intro {
    margin-bottom: 28px;
}

.jmv-intro-hook {
    font-size: 20px;
    font-weight: 700;
    color: var(--jmv-primary);
    margin: 0 0 12px;
    line-height: 1.3;
}

.jmv-intro-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--jmv-text-muted);
    margin: 0;
}

.jmv-meeting-promise {
    margin-bottom: 28px;
    padding: 20px 24px;
    background: var(--jmv-primary-lighter);
    border-radius: var(--jmv-radius-md);
    border-left: 4px solid var(--jmv-primary);
}

.jmv-promise-intro {
    font-size: 15px;
    font-weight: 600;
    color: var(--jmv-text-dark);
    margin: 0 0 14px;
}

.jmv-promise-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.jmv-promise-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--jmv-text-dark);
}

.jmv-promise-list li:last-child {
    margin-bottom: 0;
}

.jmv-promise-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--jmv-primary);
    font-weight: 700;
}

.jmv-meeting-results {
    margin-bottom: 28px;
}

.jmv-results-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--jmv-text-dark);
    margin: 0 0 10px;
}

.jmv-results-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--jmv-text-dark);
    margin: 0;
    font-weight: 500;
}

/* Section Choix JMV */
.jmv-meeting-choice {
    margin-bottom: 28px;
}

.jmv-choice-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--jmv-text-dark);
    margin: 0 0 16px;
    font-weight: 500;
}

.jmv-choice-transition {
    font-size: 15px;
    line-height: 1.6;
    color: var(--jmv-text-muted);
    margin: 0;
    font-style: italic;
}

/* Section Valeurs */
.jmv-meeting-values {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--jmv-primary-lighter);
    border-radius: var(--jmv-radius-md);
    border-left: 4px solid var(--jmv-primary);
}

.jmv-values-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--jmv-primary);
    margin: 0 0 20px;
    text-align: center;
}

.jmv-values-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jmv-value-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--jmv-radius-sm);
    transition: all var(--jmv-transition);
}

.jmv-value-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(4px);
}

.jmv-value-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--jmv-text-dark);
}

.jmv-value-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--jmv-text-muted);
}

.jmv-meeting-cta-section {
    margin-bottom: 28px;
    padding: 20px 24px;
    background: var(--jmv-primary);
    border-radius: var(--jmv-radius-md);
    text-align: center;
}

.jmv-cta-headline {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.jmv-cta-subtext {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ==========================================================================
   Scheduler Widget Header
   ========================================================================== */

.jmv-scheduler-header {
    text-align: center;
    margin-bottom: 28px;
}

.jmv-scheduler-header span {
    display: block;
    font-size: 14px;
    color: var(--jmv-text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.jmv-scheduler-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--jmv-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Steps Container
   ========================================================================== */

.jmv-scheduler-step {
    display: none;
}

.jmv-scheduler-step.active {
    display: block;
    animation: jmvFadeInUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.jmv-scheduler-instruction {
    font-size: 14px;
    color: var(--jmv-text-muted);
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid var(--jmv-border-light);
    padding-bottom: 16px;
}

/* ==========================================================================
   Calendar
   ========================================================================== */

.jmv-calendar {
    background: var(--jmv-bg-input);
    border-radius: var(--jmv-radius-md);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--jmv-shadow-sm);
    border: 1px solid var(--jmv-border-light);
}

.jmv-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 4px;
}

.jmv-calendar-nav {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--jmv-primary);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--jmv-radius-sm);
    transition: all var(--jmv-transition);
    font-weight: 600;
}

.jmv-calendar-nav:hover:not(:disabled) {
    background: var(--jmv-primary-light);
    color: var(--jmv-primary-dark);
}

.jmv-calendar-nav:disabled {
    color: var(--jmv-disabled);
    cursor: not-allowed;
    opacity: 0.5;
}

.jmv-calendar-month {
    font-size: 17px;
    font-weight: 700;
    color: var(--jmv-text-dark);
    text-transform: capitalize;
}

.jmv-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 10px;
}

.jmv-calendar-weekday {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--jmv-text-muted);
    padding: 8px 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jmv-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.jmv-calendar-day {
    aspect-ratio: 1;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--jmv-text-dark);
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--jmv-transition);
    position: relative;
}

.jmv-calendar-day:hover:not(.disabled):not(.selected) {
    background: var(--jmv-primary-light);
    color: var(--jmv-primary);
    transform: scale(1.1);
}

.jmv-calendar-day.today {
    font-weight: 700;
    color: var(--jmv-primary);
}

.jmv-calendar-day.today::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--jmv-primary);
    border-radius: 50%;
}

.jmv-calendar-day.selected {
    background: var(--jmv-primary);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(20, 46, 168, 0.3);
    transform: scale(1.05);
}

.jmv-calendar-day.selected::after {
    display: none;
}

.jmv-calendar-day.disabled {
    color: var(--jmv-disabled);
    cursor: not-allowed;
    opacity: 0.6;
}

.jmv-calendar-day.disabled:hover {
    transform: none;
    background: none;
}

.jmv-calendar-day.other-month {
    color: var(--jmv-text-light);
    opacity: 0.5;
}

/* ==========================================================================
   Time Slots
   ========================================================================== */

.jmv-timeslots {
    margin-bottom: 24px;
}

.jmv-timeslots-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--jmv-primary);
    margin-bottom: 16px;
    text-align: center;
    text-transform: capitalize;
}

.jmv-timeslots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.jmv-timeslot {
    padding: 14px 10px;
    border: 1px solid var(--jmv-primary);
    border-radius: var(--jmv-radius-sm);
    background: var(--jmv-bg-input);
    color: var(--jmv-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--jmv-transition);
    text-align: center;
}

.jmv-timeslot:hover:not(.selected):not(.disabled) {
    background: var(--jmv-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--jmv-shadow-md);
}

.jmv-timeslot.selected {
    background: var(--jmv-primary);
    color: #fff;
    border-color: var(--jmv-primary);
    box-shadow: 0 2px 8px rgba(20, 46, 168, 0.3);
    transform: translateY(-1px);
}

.jmv-timeslot.disabled {
    border-color: var(--jmv-border);
    color: var(--jmv-disabled);
    cursor: not-allowed;
    opacity: 0.5;
}

.jmv-timeslot.disabled:hover {
    transform: none;
    box-shadow: none;
    background: var(--jmv-bg-input);
}

/* ==========================================================================
   Timeslots Loading & Error States
   ========================================================================== */

.jmv-timeslots.loading .jmv-timeslots-grid {
    display: none;
}

.jmv-timeslots-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    gap: 16px;
    color: var(--jmv-text-muted);
    font-size: 14px;
}

.jmv-timeslots-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--jmv-border-light);
    border-top-color: var(--jmv-primary);
    border-radius: 50%;
    animation: jmvSpin 0.8s linear infinite;
}

.jmv-timeslots-error {
    text-align: center;
    padding: 24px 16px;
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: var(--jmv-radius-md);
}

.jmv-timeslots-error p {
    margin: 0 0 16px;
    color: var(--jmv-error);
    font-size: 14px;
    line-height: 1.5;
}

.jmv-btn-retry {
    display: inline-block;
    padding: 10px 20px;
    background: var(--jmv-error);
    color: #fff;
    border: none;
    border-radius: var(--jmv-radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--jmv-transition);
}

.jmv-btn-retry:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.jmv-timeslots-empty {
    text-align: center;
    padding: 24px 16px;
    background: var(--jmv-primary-lighter);
    border-radius: var(--jmv-radius-md);
}

.jmv-timeslots-empty p {
    margin: 0;
    color: var(--jmv-text-muted);
    font-size: 14px;
}

/* ==========================================================================
   Navigation Buttons
   ========================================================================== */

.jmv-btn-next,
.jmv-btn-submit {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: var(--jmv-radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--jmv-transition);
    text-transform: none;
    letter-spacing: 0.3px;
}

.jmv-btn-next {
    background: var(--jmv-disabled-bg);
    color: var(--jmv-disabled);
}

.jmv-btn-next.enabled {
    background: var(--jmv-primary);
    color: #fff;
    box-shadow: var(--jmv-shadow-md);
}

.jmv-btn-next.enabled:hover {
    background: var(--jmv-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--jmv-shadow-lg);
}

.jmv-btn-next.enabled:active {
    transform: translateY(0);
}

.jmv-btn-next:disabled {
    cursor: not-allowed;
}

.jmv-btn-submit {
    background: var(--jmv-disabled-bg);
    color: var(--jmv-disabled);
}

.jmv-btn-submit.enabled {
    background: var(--jmv-primary);
    color: #fff;
    box-shadow: var(--jmv-shadow-md);
}

.jmv-btn-submit.enabled:hover {
    background: var(--jmv-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--jmv-shadow-lg);
}

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

.jmv-btn-submit:disabled {
    cursor: not-allowed;
}

.jmv-btn-submit.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.jmv-btn-submit.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: jmvSpin 0.7s linear infinite;
}

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

/* ==========================================================================
   Form (Step 2)
   ========================================================================== */

.jmv-form-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--jmv-border-light);
}

.jmv-form-summary-date {
    font-size: 15px;
    font-weight: 600;
    color: var(--jmv-primary);
    text-transform: capitalize;
}

.jmv-form-summary-modify {
    font-size: 13px;
    color: var(--jmv-text-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color var(--jmv-transition);
}

.jmv-form-summary-modify:hover {
    color: var(--jmv-primary);
}

.jmv-form-confidential {
    font-size: 14px;
    color: var(--jmv-text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
    text-align: center;
    background: var(--jmv-primary-lighter);
    padding: 12px 16px;
    border-radius: var(--jmv-radius-sm);
    border-left: 3px solid var(--jmv-primary);
}

.jmv-scheduler-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.jmv-form-field {
    width: 100%;
}

.jmv-form-input,
.jmv-form-select,
.jmv-form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--jmv-border);
    border-radius: var(--jmv-radius-sm);
    font-size: 15px;
    font-family: inherit;
    color: var(--jmv-text-dark);
    background: var(--jmv-bg-input);
    transition: all var(--jmv-transition);
    box-sizing: border-box;
}

.jmv-form-input:hover,
.jmv-form-select:hover,
.jmv-form-textarea:hover {
    border-color: var(--jmv-text-light);
}

.jmv-form-input:focus,
.jmv-form-select:focus,
.jmv-form-textarea:focus {
    outline: none;
    border-color: var(--jmv-primary);
    box-shadow: 0 0 0 3px rgba(20, 46, 168, 0.1);
}

.jmv-form-input::placeholder,
.jmv-form-textarea::placeholder {
    color: var(--jmv-text-light);
}

.jmv-form-input.error,
.jmv-form-select.error,
.jmv-form-textarea.error {
    border-color: var(--jmv-error);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.jmv-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.jmv-form-select option {
    padding: 12px;
}

.jmv-form-textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.5;
}

.jmv-form-error {
    font-size: 12px;
    color: var(--jmv-error);
    margin-top: 6px;
    display: none;
}

.jmv-form-field.has-error .jmv-form-error {
    display: block;
}

/* Global Form Error Message */
.jmv-form-global-error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--jmv-radius-sm);
    color: var(--jmv-error);
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease, margin-bottom 0.3s ease;
}

.jmv-form-global-error.visible {
    opacity: 1;
    max-height: 100px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

/* ==========================================================================
   Success (Step 3)
   ========================================================================== */

.jmv-scheduler-success {
    text-align: center;
    padding: 40px 24px;
}

.jmv-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--jmv-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
    animation: jmvSuccessPop 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes jmvSuccessPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.jmv-success-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.jmv-scheduler-success h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--jmv-text-dark);
    margin: 0 0 16px;
}

.jmv-scheduler-success p {
    font-size: 15px;
    color: var(--jmv-text-muted);
    line-height: 1.7;
    margin: 0;
}

.jmv-success-details {
    background: var(--jmv-bg-input);
    border-radius: var(--jmv-radius-md);
    padding: 24px;
    margin-top: 24px;
    text-align: left;
    border: 1px solid var(--jmv-border-light);
    box-shadow: var(--jmv-shadow-sm);
}

.jmv-success-details p {
    margin: 10px 0;
    font-size: 14px;
}

.jmv-success-details strong {
    color: var(--jmv-text-dark);
    font-weight: 600;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media screen and (max-width: 900px) {
    .jmv-meeting-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .jmv-meeting-content {
        max-width: 100%;
        text-align: center;
    }

    .jmv-meeting-divider {
        margin: 28px auto;
    }

    .jmv-meeting-phone {
        justify-content: center;
    }

    .jmv-meeting-comparison-fullwidth {
        margin-bottom: 30px;
    }

    .jmv-scheduler-wrapper {
        flex: 0 0 100%;
        max-width: 480px;
        width: 100%;
    }

    .jmv-values-title {
        text-align: center;
    }

    .jmv-value-item {
        text-align: left;
    }
}

@media screen and (max-width: 540px) {
    .jmv-meeting-container {
        padding: 30px 16px;
        gap: 32px;
    }

    .jmv-meeting-title span {
        font-size: 18px;
    }

    .jmv-meeting-title strong {
        font-size: 28px;
    }

    .jmv-btn-call {
        padding: 16px 24px;
        font-size: 13px;
        width: 100%;
        box-sizing: border-box;
    }

    .jmv-meeting-phone {
        font-size: 20px;
    }

    .jmv-scheduler-wrapper {
        padding: 24px 20px;
    }

    .jmv-scheduler-header h2 {
        font-size: 18px;
    }

    .jmv-calendar {
        padding: 16px 12px;
    }

    .jmv-calendar-day {
        min-width: 36px;
        min-height: 36px;
        font-size: 13px;
    }

    .jmv-timeslots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .jmv-timeslot {
        padding: 12px 8px;
        font-size: 13px;
    }

    .jmv-form-input,
    .jmv-form-select,
    .jmv-form-textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .jmv-btn-next,
    .jmv-btn-submit {
        padding: 14px 20px;
        font-size: 15px;
    }

    /* Values section - Mobile */
    .jmv-meeting-values {
        padding: 20px 16px;
    }

    .jmv-value-item {
        padding: 10px 12px;
    }

    .jmv-value-name {
        font-size: 14px;
    }

    .jmv-value-desc {
        font-size: 13px;
    }
}

@media screen and (max-width: 380px) {
    .jmv-calendar-day {
        min-width: 32px;
        min-height: 32px;
        font-size: 12px;
    }

    .jmv-calendar-weekday {
        font-size: 10px;
    }

    .jmv-timeslots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
