.elementor-101 .elementor-element.elementor-element-98d2a3d{--display:flex;}.elementor-101 .elementor-element.elementor-element-b4c3523{--display:flex;--z-index:0;}@media(min-width:768px){.elementor-101 .elementor-element.elementor-element-98d2a3d{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-8695247 */@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --p-deep: #7b005f;
    --p-vibrant: #d4148e;
    --p-light: #ff4da6;
    --p-dark: #861657;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: rgba(0, 0, 0, 0.65);
    --glass-border: rgba(212, 20, 142, 0.15);
    --card-shadow-ambient: 0 15px 35px rgba(0, 0, 0, 0.03);
    --card-shadow-hover: 0 30px 60px rgba(212, 20, 142, 0.12);
}

/* --- SIDEBAR WRAPPER --- */
.jh-sidebar {
    position: sticky;
    top: 180px;
    width: 100%;
    max-width: 380px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
}

.jh-sidebar * {
    box-sizing: border-box;
}

/* --- APPOINTMENT FORM CARD --- */
.jh-sidebar-card {
    position: relative;
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 28px;
    margin-bottom: 24px;
    box-shadow: var(--card-shadow-ambient);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.jh-sidebar-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(130deg, transparent 20%, var(--p-light) 40%, #ffffff 50%, var(--p-vibrant) 60%, transparent 80%);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: sidebarBorderFlow 5s linear infinite;
}

.jh-sidebar-card:hover {
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(212, 20, 142, 0.3);
}

.jh-sidebar-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 24px 0;
    background: linear-gradient(90deg, var(--p-vibrant), var(--p-light), var(--p-deep), var(--p-vibrant));
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sidebarTextFlow 4s linear infinite;
    letter-spacing: -0.5px;
}

/* --- FORM STYLING --- */
.jh-form-group {
    margin-bottom: 18px;
}

.jh-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jh-form-group input,
.jh-form-group textarea,
.jh-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: var(--text-main);
    background: rgba(212, 20, 142, 0.03);
    transition: all 0.3s ease;
}

.jh-form-group input:focus,
.jh-form-group textarea:focus,
.jh-form-group select:focus {
    outline: none;
    border-color: var(--p-vibrant);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(212, 20, 142, 0.1);
}

.jh-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* --- SUBMIT BUTTON --- */
.jh-btn-submit {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--p-vibrant) 0%, var(--p-light) 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 10px 30px rgba(212, 20, 142, 0.25);
    margin-top: 8px;
    animation: sidebarBtnPulse 2s infinite;
}

.jh-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 20, 142, 0.35);
    background: linear-gradient(135deg, var(--p-light) 0%, var(--p-vibrant) 100%);
}

.jh-btn-submit:active {
    transform: translateY(-1px);
}

/* --- QUICK INFO CARDS --- */
.jh-info-card {
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--card-shadow-ambient);
    transition: all 0.3s ease;
}

.jh-info-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}

.jh-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 20, 142, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    animation: sidebarIconGlow 3s infinite alternate;
}

.jh-info-content h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jh-info-content p {
    font-size: 13px;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- QUICK LINKS --- */
.jh-quick-links {
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--card-shadow-ambient);
}

.jh-quick-links-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: var(--p-deep);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jh-quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jh-quick-links-item {
    margin-bottom: 12px;
}

.jh-quick-links-item:last-child {
    margin-bottom: 0;
}

.jh-quick-links-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.jh-quick-links-item a::before {
    content: '→';
    font-weight: 700;
    color: var(--p-vibrant);
    transition: all 0.3s ease;
}

.jh-quick-links-item a:hover {
    color: var(--p-vibrant);
    background: rgba(212, 20, 142, 0.05);
    padding-left: 16px;
}

/* --- DEPARTMENTS LIST --- */
.jh-departments-list {
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--card-shadow-ambient);
}

.jh-departments-list-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: var(--p-deep);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jh-departments-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jh-departments-list li {
    margin-bottom: 10px;
}

.jh-departments-list li:last-child {
    margin-bottom: 0;
}

.jh-departments-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.jh-departments-list a::before {
    content: '◆';
    font-size: 8px;
    color: var(--p-vibrant);
}

.jh-departments-list a:hover {
    color: var(--p-vibrant);
    background: rgba(212, 20, 142, 0.05);
    border-left-color: var(--p-vibrant);
    padding-left: 16px;
}

/* --- SPECIALIST CARD --- */
.jh-specialist-card {
    background: linear-gradient(135deg, rgba(212, 20, 142, 0.08) 0%, rgba(123, 0, 95, 0.05) 50%, rgba(212, 20, 142, 0.08) 100%);
    background-size: 200% 200%;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    animation: sidebarBgShift 6s ease infinite;
}

.jh-specialist-card p {
    margin: 0 0 12px 0;
    font-size: 13px;
    color: var(--text-muted);
}

.jh-specialist-card h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--p-deep);
}

.jh-specialist-card a {
    display: inline-block;
    color: var(--p-vibrant);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--p-vibrant);
    transition: all 0.3s ease;
}

.jh-specialist-card a:hover {
    color: var(--p-deep);
    border-bottom-color: var(--p-deep);
}

/* --- ANIMATIONS --- */
@keyframes sidebarBorderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
@keyframes sidebarTextFlow {
    to { background-position: 300% center; }
}
@keyframes sidebarBtnPulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 20, 142, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 20, 142, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 20, 142, 0); }
}
@keyframes sidebarIconGlow {
    0% { box-shadow: 0 0 0 rgba(212, 20, 142, 0); background: rgba(212, 20, 142, 0.05); }
    100% { box-shadow: 0 0 15px rgba(212, 20, 142, 0.2); background: rgba(212, 20, 142, 0.15); }
}
@keyframes sidebarBgShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .jh-sidebar {
        max-width: 100%;
        position: static;
        top: auto;
    }

    .jh-sidebar-card,
    .jh-info-card,
    .jh-quick-links,
    .jh-departments-list,
    .jh-specialist-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .jh-sidebar-card {
        padding: 24px 20px;
    }

    .jh-sidebar-title {
        font-size: 18px;
    }

    .jh-form-group input,
    .jh-form-group textarea,
    .jh-form-group select {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}/* End custom CSS */