/* teleconsultation/assets/css/teleconsult.css */
/* Premium Integrative Ayurveda UI theme (Dark-emerald & Gold) */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-main: #0a2e15;
    --bg-card: rgba(15, 15, 15, 0.4);
    --gold: #eab308;
    --gold-hover: #ca8a04;
    --emerald: #16a34a;
    --emerald-dim: rgba(22, 163, 74, 0.15);
    --text-primary: #ffffff;
    --text-muted: #94a3b8;
    --border-gold: rgba(234, 179, 8, 0.2);
    --border-glow: rgba(234, 179, 8, 0.4);
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-sans);
    margin: 0;
    padding: 0;
    background-image: 
        radial-gradient(circle at 75% 50%, rgba(22, 163, 74, 0.25) 0%, transparent 50%), 
        radial-gradient(circle at 50% 40%, rgba(22, 163, 74, 0.15) 0%, transparent 60%), 
        radial-gradient(circle at 50% 0%, rgba(20, 70, 35, 0.6) 0%, transparent 80%), 
        linear-gradient(180deg, #0a2e15 0%, #020a04 100%);
    background-attachment: fixed;
}

.glow-text {
    text-shadow: 0 0 10px rgba(19, 236, 128, 0.4);
}

.gold-text {
    color: var(--gold);
    font-family: var(--font-serif);
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    border-color: var(--border-glow);
    box-shadow: 0 8px 32px 0 rgba(19, 236, 128, 0.1);
}

/* Premium Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #b89327 100%);
    color: #050a08;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 11px 27px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
}

/* Form Controls */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    background: rgba(5, 10, 8, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 10px rgba(19, 236, 128, 0.2);
    background: rgba(10, 20, 16, 0.9);
}

/* Stepper Indicator */
.stepper-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.stepper-container::before {
    content: '';
    position: absolute;
    height: 2px;
    background: rgba(212, 175, 55, 0.15);
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.step-node {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
    transition: all 0.4s ease;
}

.step-node.active {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transform: scale(1.1);
}

.step-node.completed {
    border-color: var(--emerald);
    background: var(--emerald);
    color: #050a08;
    box-shadow: 0 0 15px rgba(19, 236, 128, 0.3);
}

/* Stepper Step Cards */
.step-card {
    display: none;
    animation: fadeIn 0.5s forwards;
}

.step-card.active {
    display: block;
}

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

/* Doctor Cards Grid */
.doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.doc-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.doc-card:hover {
    transform: translateY(-5px);
    border-color: var(--emerald);
    background: rgba(19, 236, 128, 0.03);
    box-shadow: 0 8px 24px rgba(19, 236, 128, 0.08);
}

.doc-card.selected {
    border-color: var(--emerald);
    background: rgba(19, 236, 128, 0.06);
    box-shadow: 0 0 20px rgba(19, 236, 128, 0.15);
}

.doc-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    margin: 0 auto 15px;
}

/* Slots Selector */
.slots-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.slot-btn {
    background: rgba(5, 10, 8, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    color: var(--text-primary);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.slot-btn:hover {
    border-color: var(--emerald);
    color: var(--emerald);
    background: rgba(19, 236, 128, 0.05);
}

.slot-btn.selected {
    background: var(--emerald);
    color: #050a08;
    border-color: var(--emerald);
    box-shadow: 0 0 10px rgba(19, 236, 128, 0.3);
}

.slot-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: transparent;
    background: rgba(0,0,0,0.2);
}

/* Premium Navigation Panel CSS (Matches Main Website's Design Aesthetics) */
.nav-panel { 
    background: transparent; 
    backdrop-filter: blur(20px) saturate(180%); 
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 32px;
    box-sizing: border-box;
}
.nav-panel::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(234, 179, 8, 0.4), transparent);
    opacity: 0.8;
}

.nav-container {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    max-width: 1280px;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
}

.nav-left {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 32px;
}

.nav-center {
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
}

.nav-right {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.nav-panel-link {
    color: #ffffff;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
}

.nav-panel-link:hover {
    color: #eab308;
    text-shadow: 0 0 8px rgba(234, 179, 8, 0.2);
}

.nav-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo-link:hover .nav-logo-img {
    transform: scale(1.1);
}

.nav-logo-text {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.4em;
    color: #eab308;
    text-transform: uppercase;
    margin-top: 4px;
}

.nav-badge-pill {
    font-family: var(--font-sans);
    font-size: 10px;
    color: #16a34a;
    font-weight: 600;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 10px;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 991px) {
    .nav-left {
        display: none;
    }
    .nav-right .nav-panel-link.desktop-only {
        display: none;
    }
}

