/* ============================================================
   ULTRA-PREMIUM LUXURY APPOINTMENT PAGE
   ============================================================ */

:root {
    --lux-primary: #0a2472;
    --lux-accent: #0cacee;
    --lux-gold: #c5a059;
    --lux-text: #1e293b;
    --lux-bg: #f8fafc;
    --lux-shadow: 0 40px 100px rgba(10, 36, 114, 0.12);
}

.luxury-padding {
    padding: 100px 0;
    background: var(--lux-bg);
}

.luxury-booking-card {
    background: #fff;
    border-radius: 50px;
    box-shadow: var(--lux-shadow);
    overflow: hidden;
    border: 1px solid rgba(165, 160, 89, 0.1);
}

/* --- Left Side: Signature Doctor Card --- */

.luxury-profile-side {
    background: linear-gradient(180deg, #fdfdfd 0%, #f4f7fe 100%);
    padding: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(10, 36, 114, 0.05);
    position: relative;
    overflow: hidden;
}

.luxury-profile-side::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230cacee' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.signature-card {
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.card-tag {
    display: inline-block;
    background: var(--lux-primary);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.expert-img-frame {
    width: 280px;
    height: 280px;
    border-radius: 40px;
    margin: 0 auto 30px;
    position: relative;
    padding: 15px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.expert-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.expert-name-lux {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--lux-primary);
    margin-bottom: 8px;
}

.expert-role {
    color: var(--lux-accent);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.expert-specs-lux {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.lux-spec-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
}

.lux-spec-row i {
    color: var(--lux-accent);
    font-size: 16px;
}

.expert-badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 15px;
    color: var(--lux-gold);
    font-weight: 700;
    font-size: 13px;
}

/* --- Right Side: Sophisticated Form --- */

.luxury-form-side {
    padding: 80px 70px;
}

.form-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--lux-primary);
    margin-bottom: 45px;
}

.lux-input-group {
    margin-bottom: 5px;
}

.lux-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.lux-input, .lux-select, .lux-textarea {
    width: 100%;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 15px;
    padding: 16px 20px;
    font-size: 15px;
    color: var(--lux-text);
    transition: all 0.3s ease;
}

.visible-input {
    background: #fcfdfe !important;
    border: 1.5px solid #cbd5e1 !important;
}

.lux-input:focus, .lux-select:focus, .lux-textarea:focus {
    background: #fff;
    border-color: var(--lux-accent);
    box-shadow: 0 10px 25px rgba(12, 172, 238, 0.12);
    outline: none;
}

/* --- Segmented Toggle Control --- */

.lux-toggle-container {
    background: #f1f5f9;
    padding: 6px;
    border-radius: 18px;
    display: inline-block;
    width: 100%;
}

.lux-toggle-options {
    display: flex;
    position: relative;
    z-index: 1;
}

.lux-radio-input {
    display: none;
}

.lux-toggle-label {
    flex: 1;
    padding: 14px 20px;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    color: #64748b;
    z-index: 2;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.lux-radio-input:checked + .lux-toggle-label {
    color: #fff;
}

.lux-toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: var(--lux-primary);
    border-radius: 14px;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 20px rgba(10, 36, 114, 0.25);
}

.lux-radio-input#online_lux:checked ~ .lux-toggle-slider {
    transform: translateX(100%);
}

/* --- Submit Button --- */

.luxury-submit-btn {
    width: 100%;
    padding: 22px;
    background: var(--lux-primary);
    color: #fff;
    border: none;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(10, 36, 114, 0.2);
}

.luxury-submit-btn:hover {
    background: var(--lux-accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(12, 172, 238, 0.3);
}

.lux-notice-box {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
    font-size: 13px;
    padding: 15px 25px;
    background: #fdfdfd;
    border-radius: 15px;
    border: 1px solid #f1f5f9;
}

.lux-notice-box i { color: #ef4444; }

/* --- Responsive --- */

@media (max-width: 991px) {
    .luxury-profile-side { border-right: none; padding: 50px 30px; }
    .luxury-form-side { padding: 50px 30px; }
    .expert-img-frame { width: 220px; height: 220px; }
}
