/* Desk Options Frontend Styles - Beautiful & Modern */

:root {
    --accent: #668fbb;
    --accent-dark: #5177a3;
    --accent-light: #7fa3c7;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.desk-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.desk-left-column {
    flex: 2;
}

.desk-right-column {
    flex: 1;
}

/* Main Options - Clean & Beautiful */
.desk-option {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.desk-option:hover {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(102, 143, 187, 0.08);
}

.desk-option.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(102, 143, 187, 0.12);
}

.desk-option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    cursor: pointer;
    background: white;
    transition: all 0.2s ease;
}

.desk-option-header:hover {
    background: #fafbfc;
}

.desk-option.active .desk-option-header {
    background: linear-gradient(135deg, #f0f5f9 0%, #f8fafb 100%);
    border-bottom: 1px solid var(--gray-200);
}

.desk-option-content {
    flex: 1;
}

.desk-option-title {
    margin: 0 0 6px 0;
    font-size: 19px;
    font-weight: 600;
    color: var(--gray-800);
    letter-spacing: -0.01em;
}

.desk-option-description {
    margin: 0;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.desk-option-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

/* Chevron Arrow - Clean & Simple */
.desk-arrow {
    font-size: 20px;
    color: var(--accent);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: bold;
    line-height: 1;
}

.desk-option.active .desk-arrow {
    transform: rotate(180deg);
}

/* Link Icon */
.desk-link-icon {
    font-size: 22px;
    color: var(--accent);
    font-weight: 600;
    line-height: 1;
}

/* Sub Options - Elegant Cards */
.desk-sub-options {
    display: none;
    padding: 18px 22px 22px 22px;
    background: linear-gradient(135deg, #f8fafb 0%, #f0f5f9 100%);
}

.desk-sub-option {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    padding: 18px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.desk-sub-option:last-child {
    margin-bottom: 0;
}

.desk-sub-option:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(102, 143, 187, 0.15);
    transform: translateY(-2px);
}

.desk-sub-option.selected {
    border-color: var(--accent);
    background: linear-gradient(135deg, #f0f5f9 0%, #e8f0f7 100%);
    box-shadow: 0 4px 12px rgba(102, 143, 187, 0.18);
}

.desk-sub-option-content {
    flex: 1;
}

.desk-sub-option-content strong {
    display: block;
    margin-bottom: 6px;
    color: var(--gray-800);
    font-size: 16px;
    font-weight: 600;
}

.desk-sub-option-content p {
    margin: 0;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.desk-sub-link-icon {
    font-size: 20px;
    color: var(--accent);
    font-weight: 600;
    flex-shrink: 0;
    margin-left: 16px;
}

.desk-no-sub-options {
    padding: 35px 20px;
    text-align: center;
    color: var(--gray-600);
    font-size: 14px;
    background: white;
    border-radius: var(--border-radius-sm);
    border: 2px dashed var(--gray-300);
}

/* Contact Card - Professional */
.desk-contact-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    padding: 26px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.desk-contact-card h4 {
    margin: 0 0 20px 0;
    font-size: 16px;
    color: var(--gray-800);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.desk-contact-info {
    display: flex;
    gap: 16px;
}

.desk-contact-avatar img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: 0 2px 8px rgba(102, 143, 187, 0.2);
}

.desk-contact-details h5 {
    margin: 0 0 6px 0;
    font-size: 17px;
    color: var(--gray-800);
    font-weight: 600;
}

.desk-contact-role {
    margin: 0 0 12px 0;
    font-size: 13px;
    color: var(--gray-600);
}

.desk-contact-email {
    margin: 0;
    font-size: 14px;
}

.desk-contact-email a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.desk-contact-email a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* Calendar - Clean & Modern */
.desk-date-selector {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    padding: 26px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.desk-date-selector h4 {
    margin: 0 0 20px 0;
    font-size: 16px;
    color: var(--gray-800);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.desk-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.desk-calendar-month {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 15px;
}

.desk-calendar-prev,
.desk-calendar-next {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: var(--gray-700);
    transition: all 0.2s ease;
    font-weight: 600;
}

.desk-calendar-prev:hover,
.desk-calendar-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: scale(1.05);
}

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

.desk-calendar-day-header {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    padding: 12px 0;
}

.desk-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray-700);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.desk-calendar-day:not(.empty):not(.disabled):hover {
    background: var(--gray-100);
    color: var(--accent);
    transform: scale(1.08);
}

.desk-calendar-day.today {
    background: linear-gradient(135deg, #e8f0f7 0%, #d9e8f5 100%);
    color: var(--accent);
    font-weight: 600;
}

.desk-calendar-day.selected {
    background: var(--accent);
    color: white;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(102, 143, 187, 0.3);
    transform: scale(1.05);
}

.desk-calendar-day.disabled {
    color: var(--gray-300);
    cursor: not-allowed;
}

.desk-calendar-day.empty {
    cursor: default;
}

/* Time Slots - Interactive */
.desk-time-slot-selector {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    padding: 26px;
    box-shadow: var(--shadow);
}

.desk-time-slot-selector h4 {
    margin: 0 0 20px 0;
    font-size: 16px;
    color: var(--gray-800);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.desk-no-slots {
    text-align: center;
    color: var(--gray-600);
    font-size: 14px;
    padding: 35px 20px;
    background: var(--gray-50);
    border-radius: var(--border-radius-sm);
    border: 2px dashed var(--gray-300);
}

.desk-time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.desk-time-slot {
    padding: 16px;
    text-align: center;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    color: var(--gray-700);
    font-size: 15px;
}

.desk-time-slot:hover {
    border-color: var(--accent);
    background: linear-gradient(135deg, #f0f5f9 0%, #e8f0f7 100%);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(102, 143, 187, 0.15);
}

.desk-time-slot.selected {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 143, 187, 0.3);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .desk-wrapper {
        flex-direction: column;
        padding: 16px;
    }
    
    .desk-time-slots {
        grid-template-columns: 1fr;
    }
    
    .desk-option-header {
        padding: 18px 20px;
    }
    
    .desk-option-title {
        font-size: 17px;
    }
    
    .desk-sub-options {
        padding: 14px 16px 16px 16px;
    }
    
    .desk-sub-option {
        padding: 14px 16px;
    }
}