/* ============================================================
   ডক্টরপাড়া — telemedicine.css
   Professional Telemedicine Page Redesign
   ============================================================ */

:root {
    --online:       #16A34A;
    --busy:         #DC2626;
}

/* ============================================================
   NAVBAR
   ============================================================ */

/* ============================================================
   MOBILE HEADER
   ============================================================ */

/* ============================================================
   SIDE DRAWER
   ============================================================ */

/* ============================================================
   HERO SECTION
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #0e7080 40%, var(--secondary) 100%);
    padding: 70px 0 90px; position: relative; overflow: hidden;
}
.page-hero::before { content:''; position:absolute; top:-100px; right:-80px; width:420px; height:420px; border-radius:50%; background:rgba(255,255,255,.04); pointer-events:none; }
.page-hero::after  { content:''; position:absolute; bottom:-80px; left:-80px; width:340px; height:340px; border-radius:50%; background:rgba(255,255,255,.03); pointer-events:none; }

/* floating video preview */
.hero-video-ring { position: absolute; right: 8%; top: 50%; transform: translateY(-50%); width: 340px; height: 340px; border-radius: 50%; border: 3px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; animation: spin-slow 18s linear infinite; }
.hero-video-ring::before { content:''; position:absolute; inset:-18px; border-radius:50%; border: 2px dashed rgba(255,255,255,.08); }
.hero-video-inner { width: 240px; height: 240px; background: rgba(255,255,255,.1); border-radius: 50%; backdrop-filter: blur(8px); border: 2px solid rgba(255,255,255,.18); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; animation: spin-slow 18s linear infinite reverse; }
.hero-video-inner i { font-size: 4rem; color: #7FECF7; }
.hero-video-inner span { font-size: .85rem; color: rgba(255,255,255,.8); font-weight: 600; }
@keyframes spin-slow { from{transform:rotate(0)} to{transform:rotate(360deg)} }

.hero-content { position: relative; z-index: 1; max-width: 620px; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 50px; padding: 5px 16px; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.9); text-transform: uppercase; letter-spacing: .7px; margin-bottom: 18px; }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-title { font-size: 2.8rem; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 14px; }
.hero-subtitle { font-size: 1.06rem; color: rgba(255,255,255,.72); margin-bottom: 32px; line-height: 1.7; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-hero-primary { display: inline-flex; align-items: center; gap: 9px; background: var(--white); color: var(--primary); border: none; border-radius: 50px; padding: 14px 28px; font-family: 'Hind Siliguri', sans-serif; font-size: .96rem; font-weight: 800; cursor: pointer; transition: var(--transition); box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.22); }
.btn-hero-outline { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.12); color: var(--white); border: 1.5px solid rgba(255,255,255,.3); border-radius: 50px; padding: 13px 26px; font-family: 'Hind Siliguri', sans-serif; font-size: .96rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.btn-hero-outline:hover { background: rgba(255,255,255,.22); }

.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hstat-val { font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.hstat-lbl { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 4px; font-weight: 500; }

.page-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }

/* ============================================================
   WHY TELEMEDICINE — FEATURES
   ============================================================ */
.features-section { padding: 60px 0; background: var(--bg-light); }
.section-heading { text-align: center; margin-bottom: 44px; }
.section-heading h2 { font-size: 1.75rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.section-heading p { font-size: .92rem; color: var(--text-muted); }
.section-heading .s-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(11,85,99,.08); color: var(--primary); border-radius: 50px; padding: 4px 14px; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 12px; }

.feature-card { background: var(--white); border-radius: var(--radius-md); border: 1.5px solid var(--border); padding: 30px 26px; text-align: center; transition: var(--transition); box-shadow: var(--shadow-sm); height: 100%; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--secondary); }
.feature-icon { width: 68px; height: 68px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin: 0 auto 18px; }
.fi-teal   { background: rgba(11,85,99,.1);   color: var(--primary); }
.fi-green  { background: rgba(22,163,74,.1);  color: var(--success); }
.fi-blue   { background: rgba(37,99,235,.1);  color: #2563EB; }
.fi-amber  { background: rgba(217,119,6,.1);  color: var(--warning); }
.fi-purple { background: rgba(124,58,237,.1); color: #7C3AED; }
.fi-cyan   { background: rgba(6,182,212,.1);  color: var(--accent); }
.feature-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { padding: 60px 0; background: var(--white); }
.steps-row { display: flex; align-items: flex-start; gap: 0; position: relative; }
.steps-row::before { content:''; position:absolute; top: 36px; left: calc(12.5% + 20px); right: calc(12.5% + 20px); height: 2px; background: linear-gradient(90deg, var(--secondary), var(--accent)); z-index: 0; }
.step-item { flex: 1; text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: 0 6px 20px rgba(11,85,99,.3); border: 4px solid var(--white); }
.step-item h5 { font-size: .96rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.step-item p { font-size: .84rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   SPECIALTY CHIPS
   ============================================================ */
.specialty-chips-bar { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; position: sticky; top: 68px; z-index: 90; }
.specialty-chips-inner { display: flex; gap: 8px; overflow-x: auto; padding: 2px 4px; scrollbar-width: none; }
.specialty-chips-inner::-webkit-scrollbar { display: none; }
.spec-chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border-radius: 50px; border: 1.5px solid var(--border); background: var(--bg-light); font-family: 'Hind Siliguri', sans-serif; font-size: .82rem; font-weight: 600; color: var(--text); cursor: pointer; transition: var(--transition); white-space: nowrap; flex-shrink: 0; }
.spec-chip:hover { border-color: var(--secondary); color: var(--secondary); }
.spec-chip.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ============================================================
   DOCTORS GRID
   ============================================================ */
.doctors-section { padding: 50px 0 60px; }
.doctors-section-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.doctors-section-header h2 { font-size: 1.4rem; font-weight: 800; color: var(--dark); }
.online-count { display: inline-flex; align-items: center; gap: 7px; background: rgba(22,163,74,.08); color: var(--success); border: 1.5px solid rgba(22,163,74,.2); border-radius: 50px; padding: 5px 14px; font-size: .82rem; font-weight: 700; }
.online-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: blink 1.4s ease-in-out infinite; }

.tele-doctors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tele-doctor-card { background: var(--white); border-radius: var(--radius-md); border: 1.5px solid var(--border); overflow: hidden; transition: var(--transition); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tele-doctor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--secondary); }

.tdc-top { padding: 24px 20px 18px; text-align: center; position: relative; }
.status-pill { position: absolute; top: 14px; right: 14px; display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.sp-online  { background: rgba(22,163,74,.1);  color: var(--online); border: 1.5px solid rgba(22,163,74,.25); }
.sp-busy    { background: rgba(220,38,38,.08); color: var(--busy);   border: 1.5px solid rgba(220,38,38,.2); }
.sp-offline { background: rgba(100,116,139,.1); color: #64748b;      border: 1.5px solid rgba(100,116,139,.2); }
.sp-dot { width: 7px; height: 7px; border-radius: 50%; }
.sp-online  .sp-dot { background: var(--online); animation: blink 1.4s ease-in-out infinite; }
.sp-busy    .sp-dot { background: var(--busy); }
.sp-offline .sp-dot { background: #94a3b8; }

.tdc-avatar { width: 88px; height: 88px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: var(--white); margin: 0 auto 14px; border: 3px solid var(--white); box-shadow: var(--shadow-sm); }
.tdc-name { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.tdc-specialty { font-size: .83rem; color: var(--text-muted); margin-bottom: 10px; }
.tdc-rating { display: inline-flex; align-items: center; gap: 5px; font-size: .82rem; color: var(--text-muted); margin-bottom: 10px; }
.tdc-rating i { color: #F59E0B; }
.tdc-fee { font-size: 1rem; font-weight: 800; color: var(--primary); }
.tdc-fee span { font-size: .78rem; font-weight: 500; color: var(--text-muted); }

.tdc-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 20px 14px; }
.tdc-meta-item { background: var(--bg-light); border-radius: 8px; padding: 8px 10px; text-align: center; }
.tdc-meta-item .val { font-size: .88rem; font-weight: 700; color: var(--dark); }
.tdc-meta-item .lbl { font-size: .7rem; color: var(--text-muted); margin-top: 2px; }

.tdc-footer { padding: 14px 20px 18px; border-top: 1px solid var(--bg-light); display: flex; gap: 8px; margin-top: auto; }
.btn-video-call { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; background: linear-gradient(135deg, var(--success), #22c55e); color: var(--white); border: none; border-radius: var(--radius-sm); padding: 11px; font-family: 'Hind Siliguri', sans-serif; font-size: .86rem; font-weight: 700; cursor: pointer; transition: var(--transition); }
.btn-video-call:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(22,163,74,.3); }
.btn-video-call:disabled { background: #9CA3AF; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-book-appt { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; background: linear-gradient(135deg, var(--primary), var(--primary-lt)); color: var(--white); border: none; border-radius: var(--radius-sm); padding: 11px; font-family: 'Hind Siliguri', sans-serif; font-size: .86rem; font-weight: 700; cursor: pointer; transition: var(--transition); }
.btn-book-appt:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(11,85,99,.3); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { padding: 60px 0; background: var(--bg-light); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.price-card { background: var(--white); border-radius: var(--radius-lg); border: 2px solid var(--border); padding: 32px 28px; text-align: center; position: relative; transition: var(--transition); }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--secondary); background: linear-gradient(175deg, rgba(23,162,184,.04), var(--white)); }
.featured-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--secondary); color: var(--white); border-radius: 50px; padding: 4px 18px; font-size: .78rem; font-weight: 700; white-space: nowrap; }
.price-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 16px; }
.pi-basic    { background: rgba(11,85,99,.08);   color: var(--primary); }
.pi-standard { background: rgba(23,162,184,.1);  color: var(--secondary); }
.pi-premium  { background: rgba(124,58,237,.1);  color: #7C3AED; }
.pi-custom   { background: rgba(234,88,12,.08);  color: #ea580c; }
.btn-price-featured { background: var(--secondary) !important; color: var(--white) !important; border-color: var(--secondary) !important; }
.price-name { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--text-muted); margin-bottom: 8px; }
.price-amount { font-size: 2.2rem; font-weight: 800; color: var(--dark); line-height: 1; margin-bottom: 4px; }
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.price-desc { font-size: .83rem; color: var(--text-muted); margin-bottom: 22px; }
.price-features { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.price-features li { display: flex; align-items: center; gap: 9px; font-size: .86rem; color: var(--text); padding: 6px 0; border-bottom: 1px solid var(--bg-light); }
.price-features li:last-child { border-bottom: none; }
.price-features li i { color: var(--success); font-size: .85rem; flex-shrink: 0; }
.btn-price { width: 100%; border-radius: var(--radius-sm); padding: 13px; font-family: 'Hind Siliguri', sans-serif; font-size: .92rem; font-weight: 700; cursor: pointer; transition: var(--transition); border: 2px solid var(--border); background: var(--bg-light); color: var(--primary); }
.btn-price:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.price-card.featured .btn-price { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.price-card.featured .btn-price:hover { background: var(--primary-lt); border-color: var(--primary-lt); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: linear-gradient(135deg, var(--primary) 0%, #0e7080 50%, var(--secondary) 100%); padding: 60px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content:''; position:absolute; top:-60px; right:-60px; width:280px; height:280px; border-radius:50%; background:rgba(255,255,255,.05); }
.cta-banner h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 10px; position: relative; z-index: 1; }
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,.72); margin-bottom: 28px; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-cta-white { display: inline-flex; align-items: center; gap: 9px; background: var(--white); color: var(--primary); border: none; border-radius: 50px; padding: 14px 30px; font-family: 'Hind Siliguri', sans-serif; font-size: .96rem; font-weight: 800; cursor: pointer; transition: var(--transition); box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.22); }
.btn-cta-outline { display: inline-flex; align-items: center; gap: 9px; background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.45); border-radius: 50px; padding: 12px 28px; font-family: 'Hind Siliguri', sans-serif; font-size: .96rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.btn-cta-outline:hover { background: rgba(255,255,255,.15); }

/* ============================================================
   FOOTER
   ============================================================ */

/* ============================================================
   BOTTOM NAV
   ============================================================ */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {

    .tele-doctors-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-row::before { display: none; }
    .steps-row { flex-wrap: wrap; }
    .step-item { flex: 0 0 50%; padding: 16px; }

}

@media (max-width: 768px) {

    
    
    
    
    
    .specialty-chips-bar { top: 58px; }
    .page-hero { padding: 30px 0 60px; }
    .hero-title { font-size: 1.8rem; }
    .hero-video-ring { display: none; }
    .tele-doctors-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .step-item { flex: 0 0 100%; }
    .cta-banner h2 { font-size: 1.5rem; }

}

@media (max-width: 480px) {

    .hero-title { font-size: 1.5rem; }
    .hero-cta { flex-direction: column; gap: 10px; }
    .hero-stats { gap: 18px; }

}

