/* ============================================================
   main.css — Hisparadise Therapy Global Styles
   Primary: #236555 | Button: #e87247
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --primary:        #236555;
    --primary-dark:   #1a4d40;
    --primary-light:  #2d7d69;
    --primary-pale:   #e8f4f1;
    --btn-color:      #e87247;
    --btn-hover:      #d4633a;
    --text-dark:      #1e2a25;
    --text-muted:     #6c757d;
    --border-color:   #dee2e6;
    --card-shadow:    0 2px 16px rgba(35,101,85,.10);
    --radius:         10px;
    --radius-lg:      16px;
    --font-body:      'Inter', sans-serif;
    --font-heading:   'Playfair Display', serif;
    --topbar-h:       36px;
    --navbar-h:       70px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: #fff;
    line-height: 1.7;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

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

img { max-width: 100%; height: auto; }

/* ── Top Bar ───────────────────────────────────────────────── */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,.85);
    font-size: .8rem;
    height: var(--topbar-h);
}
.top-bar a { color: rgba(255,255,255,.85); transition: color .2s; }
.top-bar a:hover { color: #fff; }

/* ── Navbar ────────────────────────────────────────────────── */
.main-navbar {
    background: var(--primary);
    min-height: var(--navbar-h);
    transition: background .3s, box-shadow .3s;
}
.main-navbar.scrolled {
    background: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

/* Brand */
.brand-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}
.brand-icon-sm { width: 32px; height: 32px; font-size: 1rem; }

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
}
.brand-sub {
    font-size: .65rem;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}

/* Nav links */
.main-navbar .nav-link {
    color: rgba(255,255,255,.88) !important;
    font-size: .82rem;
    font-weight: 500;
    padding: .45rem .6rem !important;
    border-radius: 6px;
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    background: rgba(255,255,255,.12);
    color: #fff !important;
}

/* CTA button */
.btn-cta {
    background: var(--btn-color);
    color: #fff !important;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: .85rem;
    padding: .45rem 1.1rem;
    transition: background .2s, transform .15s;
}
.btn-cta:hover {
    background: var(--btn-hover);
    transform: translateY(-1px);
}

/* ── Buttons (global) ──────────────────────────────────────── */
.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: .6rem 1.6rem;
    font-weight: 600;
    transition: all .2s;
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-accent {
    background: var(--btn-color);
    color: #fff;
    border: 2px solid var(--btn-color);
    border-radius: var(--radius);
    padding: .6rem 1.6rem;
    font-weight: 600;
    transition: all .2s;
}
.btn-accent:hover {
    background: var(--btn-hover);
    border-color: var(--btn-hover);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Section Utilities ─────────────────────────────────────── */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

.section-label {
    display: inline-block;
    color: var(--btn-color);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: .5rem;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--text-dark);
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto;
}
.divider {
    width: 50px; height: 4px;
    background: var(--btn-color);
    border-radius: 2px;
    margin: 1rem auto;
}
.bg-pale { background: var(--primary-pale); }
.bg-primary-custom { background: var(--primary); }

/* ── Cards ─────────────────────────────────────────────────── */
.card-custom {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    transition: transform .25s, box-shadow .25s;
    overflow: hidden;
}
.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(35,101,85,.15);
}

.service-card { background: #fff; }
.service-card .icon-wrap {
    width: 56px; height: 56px;
    background: var(--primary-pale);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* ── Alert (custom colors) ─────────────────────────────────── */
.alert-success  { background: #d1f4ea; border-color: #a3e9d0; color: #0d5740; }
.alert-error,
.alert-danger   { background: #fde8e8; border-color: #f8b4b4; color: #7a1d1d; }
.alert-warning  { background: #fef3cd; border-color: #fde68a; color: #7d5a00; }
.alert-info     { background: #dbeafe; border-color: #93c5fd; color: #1e3a8a; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background: #0f2820; color: rgba(255,255,255,.75); }

.footer-top { padding: 60px 0 40px; }
.footer-bottom {
    background: #0a1e16;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.07);
    color: rgba(255,255,255,.5);
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    line-height: 1;
}
.footer-brand-sub {
    font-size: .6rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.footer-desc { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.7; }

.footer-heading {
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: var(--font-body);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .45rem; }
.footer-links a {
    color: rgba(255,255,255,.65);
    font-size: .87rem;
    transition: color .2s, padding-left .2s;
}
.footer-links a:hover { color: var(--btn-color); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex; gap: .7rem; align-items: flex-start;
    margin-bottom: .7rem; font-size: .87rem;
}
.footer-contact i { color: var(--btn-color); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.65); }
.footer-contact a:hover { color: var(--btn-color); }

.bank-teaser {
    background: rgba(255,255,255,.06);
    border-left: 3px solid var(--btn-color);
    font-size: .82rem;
    color: rgba(255,255,255,.65);
}

.social-btn {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.75);
    font-size: .95rem;
    transition: background .2s, color .2s;
}
.social-btn:hover { background: var(--btn-color); color: #fff; }

.footer-cta-link { color: var(--btn-color) !important; font-weight: 600; }
.footer-cta-link:hover { color: #fff !important; }

/* ── Form Styles ───────────────────────────────────────────── */
.form-control, .form-select {
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    padding: .65rem 1rem;
    font-size: .92rem;
    transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(35,101,85,.12);
    outline: none;
}
.form-label { font-weight: 600; font-size: .88rem; color: #444; margin-bottom: .35rem; }

/* ── Payment info box ──────────────────────────────────────── */
.payment-info-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.payment-info-box .detail-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.payment-info-box .detail-row:last-child { border-bottom: none; }
.payment-info-box .detail-label { font-size: .82rem; opacity: .8; }
.payment-info-box .detail-value { font-weight: 700; font-size: 1rem; }

/* ── Utility ───────────────────────────────────────────────── */
.text-primary-custom { color: var(--primary) !important; }
.text-btn-color      { color: var(--btn-color) !important; }
.bg-primary-pale     { background: var(--primary-pale); }
.border-primary      { border-color: var(--primary) !important; }
.rounded-xl          { border-radius: var(--radius-lg) !important; }

/* Scroll to top button */
#scrollTop {
    position: fixed; bottom: 24px; right: 24px;
    width: 42px; height: 42px;
    background: var(--primary);
    color: #fff; border: none; border-radius: 50%;
    display: none; align-items: center; justify-content: center;
    font-size: 1rem; cursor: pointer; z-index: 1000;
    box-shadow: 0 4px 16px rgba(35,101,85,.3);
    transition: background .2s, transform .2s;
}
#scrollTop:hover { background: var(--btn-color); transform: translateY(-2px); }
#scrollTop.show  { display: flex; }

/* ── Navbar Profile Dropdown ───────────────────────────────── */
.nav-icon-btn {
    color: rgba(255,255,255,.85);
    font-size: 1.05rem;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    transition: background .2s, color .2s;
    text-decoration: none;
}
.nav-icon-btn:hover { background: rgba(255,255,255,.12); color: #fff; }

.nav-badge {
    position: absolute;
    top: 2px; right: 2px;
    background: var(--btn-color);
    color: #fff;
    font-size: .55rem;
    font-weight: 700;
    min-width: 16px; height: 16px;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 3px;
    border: 2px solid var(--primary);
    line-height: 1;
}

.nav-profile-btn {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.18);
    border-radius: 50px;
    padding: 5px 12px 5px 5px;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    color: #fff;
}
.nav-profile-btn:hover,
.nav-profile-btn.show { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.35); }
.nav-profile-btn::after { display: none; } /* remove default caret */

.nav-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,.3);
}
.nav-avatar-initials {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--btn-color);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.nav-username { font-size: .85rem; font-weight: 600; max-width: 100px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-chevron  { font-size: .65rem; opacity: .7; transition: transform .2s; }
.nav-profile-btn.show .nav-chevron { transform: rotate(180deg); }

/* Profile dropdown menu */
.profile-dropdown {
    min-width: 240px;
    border: none;
    border-radius: 14px;
    padding: 6px;
    margin-top: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,.15);
}
.profile-dropdown-header {
    padding: 12px 14px;
    background: var(--primary-pale);
    border-radius: 10px;
    margin-bottom: 2px;
}
.profile-dd-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}
.profile-dd-initials {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.profile-dd-name  { font-weight: 700; font-size: .9rem; color: var(--text-dark); }
.profile-dd-role  { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }

.profile-dropdown .dropdown-item {
    border-radius: 8px;
    padding: 8px 12px;
    font-size: .87rem;
    font-weight: 500;
    color: #333;
    display: flex; align-items: center; gap: 10px;
    transition: background .15s, color .15s;
}
.profile-dropdown .dropdown-item i {
    width: 18px; text-align: center;
    color: var(--primary);
    font-size: .9rem;
}
.profile-dropdown .dropdown-item:hover { background: var(--primary-pale); color: var(--primary); }
.profile-dropdown .dropdown-item.text-danger i { color: #dc3545; }
.profile-dropdown .dropdown-item.text-danger:hover { background: #fde8e8; color: #dc3545; }

.badge-balance {
    font-size: .72rem; font-weight: 700;
    background: var(--primary-pale);
    color: var(--primary);
    padding: 2px 7px;
    border-radius: 20px;
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #2d8f72 100%);
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    pointer-events: none;
}
.hero-blob-1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero-blob-2 { width: 300px; height: 300px; bottom: -80px; left: -80px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.9);
    font-size: .8rem; font-weight: 600;
    padding: 6px 14px; border-radius: 50px;
    backdrop-filter: blur(4px);
    letter-spacing: .3px;
}
.hero-badge .dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: pulse-green 1.8s infinite; }
@keyframes pulse-green { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.4); } }

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    color: #fff;
    font-weight: 700;
    line-height: 1.18;
    margin: 1rem 0 1.2rem;
}
.hero-title .accent { color: #fbbf24; }

.hero-desc {
    font-size: 1.08rem;
    color: rgba(255,255,255,.82);
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 2rem;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary {
    background: var(--btn-color);
    color: #fff; border: none;
    padding: .85rem 2rem; border-radius: 10px;
    font-weight: 700; font-size: .95rem;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(232,114,71,.4);
}
.btn-hero-primary:hover { background: var(--btn-hover); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,114,71,.5); color: #fff; }

.btn-hero-secondary {
    background: rgba(255,255,255,.12);
    color: #fff; border: 1.5px solid rgba(255,255,255,.3);
    padding: .85rem 2rem; border-radius: 10px;
    font-weight: 600; font-size: .95rem;
    backdrop-filter: blur(4px);
    transition: background .2s, border-color .2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); color: #fff; }

.hero-stats {
    display: flex; gap: 2rem; flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-num { font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .8px; margin-top: 2px; }

/* Hero right card */
.hero-card {
    background: rgba(255,255,255,.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
    position: relative;
}
.hero-card-spec {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: default;
    transition: background .2s, transform .15s;
}
.hero-card-spec:hover { background: var(--primary-pale); transform: translateX(4px); }
.hero-spec-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--primary-pale);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.1rem;
    flex-shrink: 0;
}
.hero-spec-name  { font-size: .88rem; font-weight: 600; color: var(--text-dark); }
.hero-spec-price { font-size: .78rem; color: var(--text-muted); }

.floating-badge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    font-size: .8rem; font-weight: 600;
    display: flex; align-items: center; gap: 8px;
    animation: float 3s ease-in-out infinite;
    white-space: nowrap;
}
.floating-badge.badge-top { top: -20px; right: -10px; }
.floating-badge.badge-bottom { bottom: -18px; left: -10px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar { background: var(--primary-dark); padding: 28px 0; }
.stat-item { text-align: center; }
.stat-number { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-number span { color: var(--btn-color); }
.stat-label  { font-size: .82rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ── Services Section ──────────────────────────────────────── */
.spec-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 2px 16px rgba(35,101,85,.08);
    transition: transform .25s, box-shadow .25s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.spec-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--btn-color));
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
}
.spec-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(35,101,85,.14); }
.spec-card:hover::before { transform: scaleX(1); }

.spec-icon-wrap {
    width: 58px; height: 58px;
    background: var(--primary-pale);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--primary);
    margin-bottom: 1rem;
    transition: background .2s;
}
.spec-card:hover .spec-icon-wrap { background: var(--primary); color: #fff; }
.spec-card h5 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: .4rem; font-family: var(--font-body); }
.spec-card p  { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.spec-price   { font-size: .9rem; font-weight: 700; color: var(--primary); }
.spec-price span { font-size: .75rem; color: var(--text-muted); font-weight: 400; }
.spec-duration { font-size: .75rem; color: var(--text-muted); }

/* ── How It Works ──────────────────────────────────────────── */
.step-card { text-align: center; position: relative; }
.step-number {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    font-size: 1.5rem; font-weight: 800;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 4px 20px rgba(35,101,85,.3);
    position: relative; z-index: 1;
}
.step-connector {
    position: absolute;
    top: 32px; left: calc(50% + 32px);
    right: calc(-50% + 32px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--primary) 0, var(--primary) 6px, transparent 6px, transparent 12px);
    opacity: .3;
}
@media (max-width: 767px) { .step-connector { display: none; } }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 20px rgba(35,101,85,.08);
    height: 100%;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-size: 5rem; line-height: .8;
    color: var(--primary-pale);
    font-family: Georgia, serif;
    position: absolute; top: 16px; left: 20px;
    z-index: 0;
}
.testimonial-text { position: relative; z-index: 1; font-size: .95rem; color: #555; line-height: 1.75; font-style: italic; }
.testimonial-stars { color: #f59e0b; font-size: .85rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 1.2rem; }
.t-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--primary);
    color: #fff; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; flex-shrink: 0;
}
.t-name  { font-weight: 700; font-size: .9rem; color: var(--text-dark); }
.t-title { font-size: .78rem; color: var(--text-muted); }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 20px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.cta-banner::after {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    pointer-events: none;
}

/* ── Blog Cards ────────────────────────────────────────────── */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(35,101,85,.08);
    transition: transform .25s, box-shadow .25s;
    height: 100%;
    display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(35,101,85,.13); }
.blog-card-img { height: 200px; object-fit: cover; width: 100%; }
.blog-card-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-pale), #c8e6df);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: var(--primary); opacity: .5;
}
.blog-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat-tag {
    display: inline-block;
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .8px;
    color: var(--btn-color);
    background: rgba(232,114,71,.1);
    padding: 3px 10px; border-radius: 20px;
    margin-bottom: .6rem;
}
.blog-card-body h5 { font-size: 1rem; font-weight: 700; line-height: 1.4; flex: 1; font-family: var(--font-body); }
.blog-meta { font-size: .78rem; color: var(--text-muted); margin-top: .8rem; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .section-pad { padding: 50px 0; }
    .footer-top  { padding: 40px 0 24px; }
    .hero-section { min-height: auto; padding: 80px 0 60px; }
    .hero-title { font-size: 2rem; }
    .hero-stats { gap: 1.2rem; }
    .cta-banner { padding: 2rem 1.5rem; border-radius: 14px; }
    .floating-badge { display: none; }
}
