/*
 * LogopedTop - Soft Pastel Pediatric Healthcare Styling
 * Modern, Responsive, Child-Friendly & Professional UI
 */
/* ===== HERO ===== */

#homeMap{

height:600px;
width:100%;

border-radius:24px;

overflow:hidden;

box-shadow:0 20px 60px rgba(0,0,0,.08);

}



.card-pastel{
    position: relative;
    overflow: hidden;

    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(226,232,240,.8);

    padding: 28px;

    box-shadow:
        0 10px 25px -5px rgba(59,130,246,.05),
        0 8px 10px -6px rgba(0,0,0,.01);

    transition: all .25s ease-in-out;
}

.card-pastel:hover{
    transform: translateY(-4px);
    box-shadow:
        0 20px 35px -10px rgba(59,130,246,.12);
    border-color: rgba(59,130,246,.3);
}

.card-pastel::after{
    content:"";
    position:absolute;
    top:-80px;
    right:-80px;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(59,130,246,.05);
    pointer-events:none;
}
.dashboard-card{

    min-height:320px;

}

.review-item{

    padding:14px 0;

    border-bottom:1px solid #edf2f7;

}

.review-item:last-child{

    border:none;

}


.bg-gradient-light{
    background: linear-gradient(135deg,#EFF6FF 0%,#F8FAFC 45%,#DBEAFE 100%);
}

.hero-section{

    min-height:700px;

    display:flex;

    align-items:center;

}

.hero-photo{
	
transform:translateX(40px);


position:relative;

display:flex;

justify-content:center;

align-items:center;

min-height:520px;

}

.hero-image{

width:700px;

max-width:none;

height:auto;

display:block;

filter:drop-shadow(0 30px 60px rgba(37,99,235,.20));

animation:floatHero 5s ease-in-out infinite;

}

@keyframes floatHero{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}

.floating-card{

position:absolute;

background:#fff;

padding:15px 22px;

border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.10);

}

.rating-card{

top:10px;

right:0;

}

.trust-card{

left:-30px;

top:180px;

}

.verify-card{

right:-20px;

bottom:40px;

}

.hero-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:#60A5FA22;
    top:-180px;
    right:-120px;
    filter:blur(20px);
}

.hero-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:#3B82F622;
    bottom:-150px;
    left:-100px;
    filter:blur(15px);
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:999px;
    background:white;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    font-weight:600;
}


.hero-image{
    max-width:100%;
    width:620px;
    height:auto;
    object-fit:contain;

    animation:floatHero 5s ease-in-out infinite;
}
.floating-card{

position:absolute;

background:white;

padding:16px 20px;

border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.12);

animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}

.btn-primary-custom{

background:#2563EB;

border:none;

border-radius:15px;

padding:14px 28px;

font-weight:700;

transition:.3s;

}

.btn-primary-custom:hover{

background:#1D4ED8;

transform:translateY(-3px);

}

.hero-title{

font-size:68px;

font-weight:800;

line-height:1.05;

color:#111827;

}

.hero-features{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
    margin-bottom:30px;
}

.feature-badge{

    display:flex;
    align-items:center;
    gap:10px;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(12px);

    padding:14px 18px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.6);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;
}

.feature-badge:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(59,130,246,.18);
}

.feature-badge i{

    font-size:20px;

    color:#2563eb;
}

.feature-badge span{

    font-weight:600;

    color:#374151;
}

@media(max-width:768px){

.hero-features{

grid-template-columns:1fr;

}

}

.feature-badge:nth-child(1) i{
    color:#22c55e;
}

.feature-badge:nth-child(2) i{
    color:#f59e0b;
}

.feature-badge:nth-child(3) i{
    color:#3b82f6;
}

.feature-badge:nth-child(4) i{
    color:#8b5cf6;
}


.hero-title{

animation:heroTitle .8s;

}

@keyframes heroTitle{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}


.stat-info h2{
    margin:0;
    font-size:34px;
    font-weight:700;
}

.stat-info p{
    margin:0;
    color:#6b7280;
}
.stat-card{
    background:#fff;
    border-radius:24px;
    padding:20px 24px;
    min-height:130px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}
.stat-card h3{
    font-size:3rem;
    font-weight:800;
    line-height:1;
    margin-top:20px;
    margin-bottom:10px;
}


.stat-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(59,130,246,.15);

border-color:#3B82F6;

}
.stat-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    background:linear-gradient(135deg,#4f8cff,#2563eb);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#fff;
}
.stat-card:hover{

background:#fff;

box-shadow:
0 15px 40px rgba(59,130,246,.15);

}

.avatar-therapist{
    width:100px;
    height:120px;
    border-radius:20px;
    object-fit:cover;
    border:3px solid #fff;
    box-shadow:0 12px 30px rgba(59,130,246,.15);
    transform:scale(1.06);
	transition:.35s;
}



.verified-badge{
    color:#3B82F6;
    font-size:18px;
}
.dashboard-stat-card{
    height:auto !important;
    min-height:140px !important;
    display:block !important;
}

.dashboard-chart-card{
    height: 320px;
}

.dashboard-chart-card canvas{
    width: 100% !important;
    height: 240px !important;
}

.avatar-wrapper{
    position:relative;
}

.online-dot{
    position:absolute;
    right:4px;
    bottom:4px;

    width:14px;
    height:14px;

    background:#22C55E;

    border:3px solid #fff;

    border-radius:50%;
}


.dropdown-menu{

border-radius:22px;

padding:12px;

min-width:260px;

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.dropdown-item{

padding:13px 16px;

border-radius:14px;

transition:.25s;

font-weight:600;

}

.dropdown-item:hover{

background:#EFF6FF;

transform:translateX(4px);

}

.dropdown-divider{

margin:8px 0;

}

#pickerMap{

border-radius:20px;

overflow:hidden;

}

.modal-content{

border-radius:24px;

}

.modal-header{

border-bottom:none;

}

.modal-footer{

border-top:none;

}








:root {
  --primary-blue: #3B82F6;
  --primary-blue-soft: #EFF6FF;
  --mint-green: #10B981;
  --mint-green-soft: #ECFDF5;
  --soft-yellow: #FBBF24;
  --soft-yellow-soft: #FEF3C7;
  --pastel-pink: #F472B6;
  --pastel-pink-soft: #FCE7F3;
  --pastel-purple: #8B5CF6;
  --pastel-purple-soft: #F5F3FF;
  --bg-canvas: #F8FAFC;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --border-light: #E2E8F0;
  --card-radius: 20px;
  --btn-radius: 14px;
}

body {
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-canvas);
  color: var(--text-main);
  overflow-x: hidden;
  padding-bottom: 70px; /* spacing for mobile nav */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}




/* Rounded Buttons */
.btn-rounded {
  border-radius: var(--btn-radius);
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  transition: all 0.2s ease;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

.btn-mint-custom {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
}

.btn-mint-custom:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

/* Sticky Header */
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Hero Badge */
.hero-badge {
  background: var(--mint-green-soft);
  color: var(--mint-green);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Verified Badge */
.verified-badge {
  background: #3B82F6;
  color: #FFFFFF;
  border-radius: 50px;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Stat Box */
.stat-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  text-align: center;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}


.avatar-large {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 24px;
  border: 4px solid #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Cover Image Banner */
.cover-banner {
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 24px 24px 0 0;
  position: relative;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1050;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav-item.active {
  color: var(--primary-blue);
  font-weight: 700;
}

.mobile-nav-item i {
  font-size: 1.25rem;
  margin-bottom: 2px;
}

/* Leaflet Map Height */
#mapContainer {
  height: 380px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Tags & Pills */
.tag-spec {
  background: var(--primary-blue-soft);
  color: var(--primary-blue);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-right: 4px;
  margin-bottom: 6px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}


/* ===== Landing Page Statistics ===== */

.landing-stat-card{
    background:#fff;
    border-radius:24px;
    padding:28px 20px;
    text-align:center;
     border:3px solid #6D00C4;   /* Och ko'k border */
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.3s ease;
}

.landing-stat-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(37,99,235,.12);
}

.landing-stat-icon{
    width:60px;
    height:60px;
    margin:0 auto 16px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:linear-gradient(135deg,#4f7cff,#2f6cf5);
    color:#fff;
    font-size:26px;
}

.landing-stat-number{
    font-size:46px;
    font-weight:800;
    line-height:1;
    color:#1f2937;
    margin-bottom:10px;
}

.landing-stat-title{
    font-size:16px;
    color:#64748b;
    font-weight:500;
    line-height:1.5;
}


.badge-district{
    background:#eef5ff;
    color:#2563eb;
    border:1px solid #bfdbfe;
    border-radius:12px;
    padding:10px 16px;
    font-size:15px;
    font-weight:600;
    transition:.2s;
}

.badge-district:hover{
    background:#2563eb;
    color:#fff;
    transform:translateY(-2px);
}