/* ============================================================
   CROSSROADS CARE — Custom CSS
   Theme: Blue / Teal  (#1a6b8a primary, #2a9d8f accent)
   ============================================================ */

/* ---- Fonts & Root ---- */
:root {
    --primary: #1a6b8a;
    --primary-dark: #14526b;
    --accent: #2a9d8f;
    --accent-light: #e8f5f3;
    --blue-light: #e8f4f8;
    --text-dark: #1c2b36;
    --text-muted: #5a7a8a;
    --white: #ffffff;
    --border: #d4e8ef;
    --shadow: 0 4px 20px rgba(26,107,138,.10);
    --radius: 12px;
    --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: #f9fbfc;
    margin: 0;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Merriweather', serif; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

/* ---- Buttons ---- */
.btn-primary-cc {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background .25s, transform .2s, box-shadow .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary-cc:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(26,107,138,.3); color:#fff; }

.btn-accent-cc {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background .25s, transform .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-accent-cc:hover { background: #228b7e; transform: translateY(-2px); color:#fff; }

.btn-outline-cc {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-cc:hover { background: var(--primary); color: #fff; }

/* ---- Navbar ---- */
.cc-navbar {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}
.cc-navbar .navbar-brand img { height: 48px; }
.cc-navbar .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: background .2s, color .2s;
}
.cc-navbar .nav-link:hover { background: var(--blue-light); color: var(--primary) !important; }
.cc-navbar .nav-link.active { color: var(--primary) !important; font-weight: 600; }

.cc-navbar .navbar-user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.navbar-toggler { border: none !important; outline: none !important; box-shadow: none !important; }

/* ---- Breadcrumb ---- */
.cc-breadcrumb {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 10px 0;
}
.cc-breadcrumb .breadcrumb { margin: 0; background: none; padding: 0; }
.cc-breadcrumb .breadcrumb-item, .cc-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.85); font-size: 14px; }
.cc-breadcrumb .breadcrumb-item.active, .cc-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: #fff; }

/* ---- Hero Section ---- */
.cc-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1d7fa0 60%, var(--accent) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.cc-hero::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    top: -150px; right: -100px;
}
.cc-hero::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    bottom: -100px; left: -50px;
}
.cc-hero h1 { font-size: clamp(2rem,4vw,3rem); font-weight: 700; line-height: 1.2; }
.cc-hero p { font-size: 17px; opacity: .9; max-width: 500px; }
.cc-hero-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.25); }

.trust-badge {
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: var(--radius);
    padding: 14px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    margin-top: 24px;
}

/* ---- Stats Bar ---- */
.cc-stats-bar {
    background: var(--primary-dark);
    padding: 20px 0;
    color: #fff;
}
.stat-item { text-align: center; padding: 10px; }
.stat-item .stat-num { font-size: 2rem; font-weight: 700; font-family: 'Inter', sans-serif; }
.stat-item .stat-label { font-size: 13px; opacity: .8; }

/* ---- Section Titles ---- */
.section-title { font-size: clamp(1.5rem,3vw,2.2rem); color: var(--text-dark); margin-bottom: 12px; }
.section-subtitle { font-size: 16px; color: var(--text-muted); margin-bottom: 40px; }
.section-badge {
    display: inline-block;
    background: var(--blue-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ---- Service Cards ---- */
.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s;
    height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(26,107,138,.15); }
.service-card .icon-wrap {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--blue-light);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: var(--primary);
}
.service-card h4 { font-size: 17px; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ---- Therapist Cards ---- */
.therapist-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s;
}
.therapist-card:hover { transform: translateY(-5px); box-shadow: 0 14px 35px rgba(26,107,138,.18); }
.therapist-card .therapist-img {
    width: 80px; height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}
.therapist-card .status-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #fff;
    display: inline-block;
}
.therapist-card .status-dot.busy { background: #f59e0b; }
.skill-tag {
    display: inline-block;
    background: var(--blue-light);
    color: var(--primary);
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    margin: 2px;
    font-weight: 500;
}
.btn-chat-cc, .btn-call-cc {
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border: none;
    cursor: pointer;
    transition: all .2s;
}
.btn-chat-cc { background: var(--primary); color: #fff; }
.btn-chat-cc:hover { background: var(--primary-dark); color: #fff; }
.btn-call-cc { background: var(--accent); color: #fff; }
.btn-call-cc:hover { background: #228b7e; color: #fff; }

/* ---- How It Works ---- */
.how-step {
    text-align: center;
    padding: 20px;
    position: relative;
}
.how-step .step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-family: 'Inter', sans-serif;
}
.how-step h5 { font-size: 16px; margin-bottom: 8px; }
.how-step p { font-size: 14px; color: var(--text-muted); margin: 0; }

.step-connector {
    position: absolute;
    top: 46px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

/* ---- Testimonials ---- */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
    height: 100%;
}
.testimonial-card .quote-icon { font-size: 32px; color: var(--accent); opacity: .4; line-height: 1; }
.testimonial-card p { font-size: 15px; color: var(--text-dark); line-height: 1.7; font-style: italic; }
.testimonial-card .author-name { font-weight: 600; font-size: 14px; }
.testimonial-card .author-role { font-size: 13px; color: var(--text-muted); }

/* ---- CTA Banner ---- */
.cc-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cc-cta::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    bottom: -100px; right: -80px;
}

/* ---- Chat Page ---- */
.chat-container { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.chat-header { background: linear-gradient(90deg, var(--primary), var(--accent)); padding: 16px 20px; color: #fff; }
.chat-messages { height: 450px; overflow-y: auto; padding: 20px; background: #f9fbfc; }
.chat-input-bar { padding: 14px 16px; border-top: 1px solid var(--border); background: #fff; }
.chat-message-left { display: flex; gap: 10px; margin-bottom: 16px; }
.chat-message-right { display: flex; flex-direction: row-reverse; gap: 10px; margin-bottom: 16px; }
.chat-bubble { max-width: 70%; padding: 12px 16px; border-radius: 16px; font-size: 14px; line-height: 1.5; }
.chat-message-left .chat-bubble { background: #fff; border: 1px solid var(--border); border-radius: 4px 16px 16px 16px; }
.chat-message-right .chat-bubble { background: var(--primary); color: #fff; border-radius: 16px 4px 16px 16px; }
.chat-avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }

/* ---- Wallet / Account ---- */
.wallet-card {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-lg);
    padding: 28px;
    color: #fff;
}
.wallet-balance { font-size: 2.2rem; font-weight: 700; font-family: 'Inter', sans-serif; }

/* ---- Intake Modal ---- */
.modal-header-cc {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: #fff;
    border-radius: var(--radius) var(--radius) 0 0;
}
.modal-header-cc .close { color: #fff; opacity: .8; }
.modal-header-cc .close:hover { opacity: 1; }

.form-control-cc {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    width: 100%;
    transition: border-color .2s;
    outline: none;
    background: #fff;
}
.form-control-cc:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,107,138,.12); }

/* Duration selector */
.duration-btn {
    border: 2px solid var(--border);
    background: #fff;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    color: var(--text-dark);
}
.duration-btn:hover, .duration-btn.active { border-color: var(--primary); background: var(--blue-light); color: var(--primary); }

/* ---- Footer ---- */
.cc-footer { background: #0f3d52; color: rgba(255,255,255,.85); padding: 60px 0 0; }
.cc-footer h5 { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 20px; letter-spacing: .3px; }
.cc-footer a { color: rgba(255,255,255,.7); font-size: 14px; display: block; margin-bottom: 8px; transition: color .2s; }
.cc-footer a:hover { color: #fff; }
.cc-footer .footer-bottom { background: #0a2e3e; padding: 16px 0; margin-top: 40px; }
.cc-footer .footer-bottom p { margin: 0; font-size: 13px; color: rgba(255,255,255,.55); }
.social-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff !important;
    font-size: 15px;
    margin-right: 8px;
    transition: background .2s;
}
.social-icon:hover { background: var(--accent); }

/* ---- Notification Badge ---- */
.notification-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}

/* ---- Timer ---- */
.session-timer {
    background: var(--blue-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}
.session-timer.warning { background: #fef3c7; border-color: #f59e0b; color: #92400e; }

/* ---- Blog Cards ---- */
.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform .25s;
    height: 100%;
}
.blog-card:hover { transform: translateY(-5px); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 18px; }
.blog-card-body h5 { font-size: 16px; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body p { font-size: 13px; color: var(--text-muted); }

/* ---- Profile page ---- */
.profile-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 40px 0;
    color: #fff;
}
.profile-avatar {
    width: 110px; height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,.5);
}

/* ---- Misc ---- */
.divider-accent { border: none; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; width: 60px; margin: 0 auto 30px; }

.pill-tag {
    display: inline-block;
    background: var(--blue-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin: 2px;
}

.online-indicator { color: #22c55e; font-size: 12px; font-weight: 600; }
.busy-indicator { color: #f59e0b; font-size: 12px; font-weight: 600; }

/* Search & Filter */
.search-box-cc {
    position: relative;
    display: flex;
    align-items: center;
}
.search-box-cc input {
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 9px 40px 9px 16px;
    font-size: 14px;
    width: 100%;
    outline: none;
}
.search-box-cc input:focus { border-color: var(--primary); }
.search-box-cc .search-icon { position: absolute; right: 14px; color: var(--text-muted); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .cc-hero { padding: 50px 0 40px; }
    .cc-hero h1 { font-size: 1.8rem; }
    .cc-cta { padding: 36px 24px; }
    .stat-item .stat-num { font-size: 1.5rem; }
}
/* ── Column helpers ── */
.col-lg-2-4 { flex: 0 0 20%; max-width: 20%; }
@media (max-width: 991px) { .col-lg-2-4 { flex: 0 0 33.333%; max-width: 33.333%; } }
@media (max-width: 575px) { .col-lg-2-4 { flex: 0 0 50%; max-width: 50%; } }

/* ── Profile header (counselor detail) ── */
.profile-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 48px 0;
}
.profile-avatar {
    width: 110px; height: 110px;
    border-radius: 50%; object-fit: cover;
    border: 4px solid rgba(255,255,255,.4);
}

/* ── Blog card ── */
.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,107,138,.15); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h5 { font-size: 15px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: 13px; color: var(--text-muted); flex: 1; line-height: 1.7; margin-bottom: 14px; }

/* ── Duration selector ── */
.duration-btn {
    padding: 8px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 13px; font-weight: 500;
    color: var(--text-dark);
    background: #fff;
    transition: all .15s;
    cursor: pointer;
    display: inline-block;
}
.duration-btn.active,
.duration-btn:has(input:checked) {
    border-color: var(--primary);
    background: var(--blue-light);
    color: var(--primary);
    font-weight: 700;
}

/* ── Step connector ── */
.step-connector {
    position: absolute;
    top: 40px; right: -50%;
    width: 100%; height: 2px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    z-index: 0;
}

/* ── Form control ── */
.form-control-cc {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-dark);
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    outline: none;
    -webkit-appearance: none;
}
.form-control-cc:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,107,138,.1);
}

/* ── Search box ── */
.search-box-cc { position: relative; }
.search-box-cc input {
    width: 100%; padding: 10px 40px 10px 14px;
    border: 1.5px solid var(--border); border-radius: 10px;
    font-size: 13px; outline: none;
}
.search-box-cc input:focus { border-color: var(--primary); }

/* ── Call buttons ── */
.btn-call-cc {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 6px; padding: 9px 16px; border-radius: 8px; font-size: 13px;
    font-weight: 600; border: none; cursor: pointer; color: #fff;
    background: var(--accent); transition: opacity .15s;
}
.btn-call-cc:hover { opacity: .88; }
.btn-accent-cc {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px; background: var(--accent); color: #fff;
    border: none; border-radius: 50px; font-weight: 600; font-size: 14px;
    text-decoration: none; cursor: pointer; transition: opacity .15s;
}
.btn-accent-cc:hover { opacity: .88; color: #fff; }

/* ── Notification badge ── */
.notification-badge {
    position: absolute; top: -4px; right: -8px;
    background: #ef4444; color: #fff;
    border-radius: 50%; width: 18px; height: 18px;
    font-size: 10px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}

/* ── Status dots ── */
.status-dot {
    display: inline-block; width: 10px; height: 10px;
    border-radius: 50%; background: #22c55e;
    border: 2px solid #fff;
}
.status-dot.busy { background: #f59e0b; }

/* ── Online / Busy pill ── */
.online-indicator { font-size: 11px; font-weight: 600; color: #16a34a; background: #dcfce7; padding: 3px 8px; border-radius: 20px; }
.busy-indicator   { font-size: 11px; font-weight: 600; color: #b45309; background: #fef3c7; padding: 3px 8px; border-radius: 20px; }

/* ── How It Works step ── */
.how-step { text-align: center; padding: 24px 16px; position: relative; z-index: 1; }
.step-num { font-size: 3rem; font-weight: 900; color: var(--primary); opacity: .12; margin-bottom: -20px; display: block; }
.how-step h5 { font-size: 15px; font-weight: 700; margin: 8px 0; }
.how-step p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── Testimonials ── */
.testimonial-card {
    background: #fff; border-radius: var(--radius-lg);
    padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border);
    height: 100%;
}
.quote-icon { font-size: 3rem; font-weight: 900; color: var(--accent); line-height: 1; opacity: .5; }
.testimonial-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.author-name { font-weight: 700; font-size: 14px; }
.author-role { font-size: 12px; color: var(--text-muted); }

/* ── CTA Section ── */
.cc-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg); padding: 60px 40px;
}

/* ── Stats bar ── */
.cc-stats-bar { background: var(--primary-dark); padding: 32px 0; }
.stat-item { text-align: center; padding: 12px; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-num  { font-size: clamp(1.4rem,2vw,1.8rem); font-weight: 800; color: #fff; }
.stat-label{ font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ── Skill tag ── */
.skill-tag {
    display: inline-block; font-size: 11px; padding: 3px 8px;
    background: var(--blue-light); color: var(--primary);
    border-radius: 20px; margin: 2px 1px; font-weight: 500;
}

/* ── Pill tag (generic) ── */
.pill-tag {
    display: inline-block; font-size: 11px; padding: 3px 10px;
    border-radius: 20px; font-weight: 600;
}

/* ── Breadcrumb ── */
.cc-breadcrumb { background: var(--blue-light); padding: 12px 0; border-bottom: 1px solid var(--border); }
.cc-breadcrumb .breadcrumb { margin: 0; background: transparent; padding: 0; }
.cc-breadcrumb .breadcrumb-item { font-size: 13px; }
.cc-breadcrumb .breadcrumb-item a { color: var(--primary); text-decoration: none; }
.cc-breadcrumb .breadcrumb-item.active { color: var(--text-muted); }
.cc-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ── Section helpers ── */
.section-badge {
    display: inline-block; background: var(--blue-light); color: var(--primary);
    font-size: 12px; font-weight: 700; padding: 5px 14px;
    border-radius: 20px; text-transform: uppercase; letter-spacing: .5px;
}
.section-title { font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 800; margin: 0; }
.section-subtitle { color: var(--text-muted); max-width: 540px; margin: 10px auto 0; font-size: 15px; }
.divider-accent {
    width: 50px; height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 2px; margin: 16px 0;
}

/* ── Service card ── */
.service-card {
    background: #fff; border-radius: var(--radius-lg);
    padding: 24px 16px; text-align: center;
    border: 1px solid var(--border); box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s; height: 100%;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,107,138,.12); }
.service-card .icon-wrap {
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px; font-size: 26px;
}
.service-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.service-card p  { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── Therapist card ── */
.therapist-card {
    background: #fff; border-radius: var(--radius-lg);
    border: 1px solid var(--border); box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s; overflow: hidden;
}
.therapist-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,107,138,.12); }
.therapist-img {
    width: 80px; height: 80px; border-radius: 50%;
    object-fit: cover; border: 3px solid var(--accent);
    display: block; margin: 0 auto;
}

/* ── Chat / Chat button ── */
.btn-chat-cc {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 16px; background: var(--primary); color: #fff;
    border: none; border-radius: 8px; font-size: 13px;
    font-weight: 600; cursor: pointer; text-decoration: none;
    transition: opacity .15s;
}
.btn-chat-cc:hover { opacity: .88; color: #fff; }

/* ── Header / Navbar ── */
.cc-navbar {
    background: #fff; box-shadow: 0 2px 12px rgba(26,107,138,.08);
    padding: 12px 0; position: sticky; top: 0; z-index: 1000;
}
.cc-navbar .nav-link {
    color: var(--text-dark) !important; font-weight: 500; font-size: 14px;
    padding: 8px 14px !important; border-radius: 8px; transition: all .15s;
}
.cc-navbar .nav-link:hover { background: var(--blue-light); color: var(--primary) !important; }
.cc-navbar .dropdown-menu { border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.cc-navbar .dropdown-item { font-size: 13px; padding: 10px 16px; color: var(--text-dark); border-radius: 6px; margin: 2px 4px; }
.cc-navbar .dropdown-item:hover { background: var(--blue-light); color: var(--primary); }

/* ── Buttons: Primary / Outline ── */
.btn-primary-cc {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px; background: var(--primary); color: #fff;
    border: 2px solid var(--primary); border-radius: 50px;
    font-weight: 600; font-size: 14px; text-decoration: none;
    cursor: pointer; transition: opacity .15s;
}
.btn-primary-cc:hover { opacity: .88; color: #fff; }
.btn-outline-cc {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px; background: transparent; color: var(--primary);
    border: 2px solid var(--primary); border-radius: 50px;
    font-weight: 600; font-size: 14px; text-decoration: none;
    cursor: pointer; transition: all .15s;
}
.btn-outline-cc:hover { background: var(--primary); color: #fff; }

/* ── Footer ── */
.cc-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0c3547 100%);
    padding: 60px 0 0; margin-top: 40px;
}
.cc-footer h5 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; letter-spacing: .3px; }
.cc-footer a { display: block; color: rgba(255,255,255,.6); font-size: 13px; margin-bottom: 8px; text-decoration: none; transition: color .15s; }
.cc-footer a:hover { color: #a8e6d9; }
.social-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
    margin-right: 8px; font-size: 14px; text-decoration: none;
    transition: all .15s;
}
.social-icon:hover { background: var(--accent); color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; margin-top: 0;
}

/* ── Hero ── */
.cc-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 55%, #0c3547 100%);
    padding: 80px 0 60px; overflow: hidden; position: relative;
}
.cc-hero h1 { color: #fff; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 900; line-height: 1.2; }
.cc-hero p  { color: rgba(255,255,255,.85); font-size: 16px; line-height: 1.8; max-width: 520px; }
.trust-badge {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,.1); border-radius: 12px;
    padding: 12px 20px; border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.9); font-size: 13px;
}

 