/**
 * PhysioHomeCare Theme — Main Modern Stylesheet
 * Brand Colors: Primary Blue #1e448f | Accent Red #e93424 | WhatsApp Green #25D366
 */

/* ==========================================================================
   LAYOUT CONTAINERS & UTILITIES
   ========================================================================== */
.physio-container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-highlight { color: var(--brand-primary); }

.bg-light { background-color: var(--bg-alt); }
.bg-white { background-color: var(--bg-card); }
.bg-navy { background-color: var(--brand-navy-dark); color: var(--text-white); }

.physio-section {
    padding: 80px 0;
    position: relative;
}

@media (max-width: 768px) {
    .physio-section {
        padding: 50px 0;
    }
}

.section-header {
    margin-bottom: 50px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: var(--brand-navy-light);
    color: var(--brand-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    color: var(--brand-navy-dark);
    margin-bottom: 14px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   BUTTON SYSTEM
   ========================================================================== */
.physio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    line-height: 1.2;
    text-align: center;
}

.physio-btn-primary {
    background-color: var(--brand-primary);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(30, 68, 143, 0.25);
}

.physio-btn-primary:hover, .physio-btn-primary:focus {
    background-color: var(--brand-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 68, 143, 0.35);
}

.physio-btn-accent {
    background-color: var(--brand-accent);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(233, 52, 36, 0.25);
}

.physio-btn-accent:hover, .physio-btn-accent:focus {
    background-color: var(--brand-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 52, 36, 0.35);
}

.physio-btn-whatsapp {
    background-color: var(--brand-whatsapp);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.physio-btn-whatsapp:hover, .physio-btn-whatsapp:focus {
    background-color: var(--brand-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.physio-btn-outline {
    background: transparent;
    border-color: var(--brand-primary);
    color: var(--brand-primary) !important;
}

.physio-btn-outline:hover, .physio-btn-outline:focus {
    background: var(--brand-primary);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.physio-btn-white {
    background: #ffffff;
    color: var(--brand-navy-dark) !important;
}

.physio-btn-white:hover, .physio-btn-white:focus {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-block { width: 100%; }
.btn-large { padding: 16px 32px; font-size: 1.08rem; }
.btn-small { padding: 8px 16px; font-size: 0.88rem; }

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.physio-topbar {
    background: var(--brand-navy-dark);
    color: #cbd5e1;
    font-size: 0.84rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.topbar-badge {
    background: #22c55e;
    color: #0f244e;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.topbar-divider { color: rgba(255,255,255,0.2); }

.topbar-link-pro {
    color: #fbbf24;
    font-weight: 600;
}
.topbar-link-pro:hover { color: #ffffff; text-decoration: underline; }

.topbar-wa-link {
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.topbar-wa-link:hover { color: #86efac; }
.wa-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
}

@media (max-width: 900px) {
    .physio-topbar { display: none; }
}

/* ==========================================================================
   STICKY MAIN HEADER & NAVIGATION
   ========================================================================== */
.physio-main-header {
    background: var(--bg-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 92px;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-branding .site-logo-img,
.site-branding .custom-logo,
.site-branding img {
    height: 68px;
    max-height: 68px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    transition: var(--transition);
    display: block;
}

.footer-logo-img {
    height: 64px;
    max-height: 64px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
}

/* Desktop Nav */
.main-nav-desktop .nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 22px;
}

.main-nav-desktop .menu-item {
    position: relative;
}

.main-nav-desktop .menu-item > a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 10px 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.main-nav-desktop .menu-item > a:hover,
.main-nav-desktop .menu-item > a:focus {
    color: var(--brand-primary);
}

.arrow-down {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

/* Standard Dropdown */
.main-nav-desktop .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 0;
    list-style: none;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.main-nav-desktop .menu-item:hover > .sub-menu,
.main-nav-desktop .menu-item:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav-desktop .sub-menu li a {
    display: block;
    padding: 8px 20px;
    font-size: 0.9rem;
    color: var(--text-main);
}

.main-nav-desktop .sub-menu li a:hover {
    background: var(--brand-navy-light);
    color: var(--brand-primary);
}

/* Mega Menus */
.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #ffffff;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.mega-menu-trigger:hover .mega-menu-dropdown,
.mega-menu-trigger:focus-within .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.services-mega-dropdown {
    width: 820px;
}

.conditions-mega-dropdown {
    width: 900px;
}

.mega-menu-header {
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.mega-menu-header h4 {
    font-size: 1.1rem;
    color: var(--brand-navy-dark);
    margin-bottom: 4px;
}

.mega-menu-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mega-service-card {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}

.mega-service-card:hover {
    background: var(--brand-navy-light);
}

.mega-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mega-info h5 {
    font-size: 0.92rem;
    margin-bottom: 2px;
    color: var(--brand-navy-dark);
}

.mega-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.35;
    margin: 0;
}

.mega-menu-footer {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

.mega-view-all {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-primary);
}

/* Conditions Mega Columns */
.conditions-mega-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.mega-search-box input {
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    width: 280px;
    outline: none;
}
.mega-search-box input:focus { border-color: var(--brand-primary); }

.conditions-mega-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.condition-col .col-heading {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--brand-accent);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.condition-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.condition-col ul li a {
    display: block;
    padding: 4px 0;
    font-size: 0.88rem;
    color: var(--text-main);
    transition: var(--transition);
}

.condition-col ul li a:hover {
    color: var(--brand-primary);
    transform: translateX(3px);
}

/* Header CTAs */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eefbf3;
    color: #15803d;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 9px 16px;
    border-radius: var(--radius-full);
    border: 1px solid #bbf7d0;
}
.header-btn-wa:hover { background: #25d366; color: #ffffff; }

.header-btn-book {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 3px 10px rgba(30,68,143,0.2);
}
.header-btn-book:hover { background: var(--brand-primary-hover); transform: translateY(-1px); }

/* Mobile Menu Toggle Button */
.mobile-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-toggle-btn .bar {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--brand-navy-dark);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 1080px) {
    .main-nav-desktop { display: none; }
    .header-btn-book { display: none; }
    .mobile-toggle-btn { display: flex; }
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER
   ========================================================================== */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav-drawer.drawer-open {
    right: 0;
}

.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 36, 78, 0.5);
    backdrop-filter: blur(2px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.drawer-backdrop.backdrop-open {
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
}

.drawer-close-btn {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.drawer-body {
    padding: 20px;
    flex-grow: 1;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.mobile-menu-list > li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-list > li > a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-navy-dark);
}

.submenu-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-sub-expand {
    background: var(--bg-alt);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--brand-primary);
}

.mobile-sub-menu {
    list-style: none;
    padding: 4px 0 12px 14px;
    margin: 0;
    display: none;
}

.mobile-sub-menu li a {
    display: block;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.physio-hero-section {
    background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 60%, #fff5f5 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #bfdbfe;
    color: var(--brand-primary);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-accent);
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.18;
    color: var(--brand-navy-dark);
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero-trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.85);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-main);
}

.chip-icon {
    color: #16a34a;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.hero-pro-link {
    font-size: 0.88rem;
    color: var(--text-muted);
}
.hero-pro-link a {
    font-weight: 700;
    color: var(--brand-accent);
}

.hero-booking-widget {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    padding: 28px;
}

.widget-header {
    text-align: center;
    margin-bottom: 20px;
}

.widget-badge {
    display: inline-block;
    background: #fef2f2;
    color: var(--brand-accent);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.widget-header h3 {
    font-size: 1.35rem;
    color: var(--brand-navy-dark);
    margin-bottom: 4px;
}

.widget-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   TRUST & VALUE PILLARS STRIP
   ========================================================================== */
.physio-trust-section {
    background: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.trust-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.t-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.t-content h4 {
    font-size: 1.02rem;
    margin-bottom: 4px;
    color: var(--brand-navy-dark);
}

.t-content p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
}

/* ==========================================================================
   INTERACTIVE CITY SELECTOR
   ========================================================================== */
.physio-city-strip-section {
    background: var(--bg-alt);
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.city-selector-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 14px;
}

.city-selector-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-navy-dark);
}

.city-selector-tabs {
    display: flex;
    gap: 10px;
}

.city-tab-btn {
    background: #ffffff;
    border: 2px solid var(--border-color);
    padding: 8px 18px;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.city-tab-btn strong {
    display: block;
    font-size: 0.95rem;
    color: var(--brand-navy-dark);
}

.city-tab-btn small {
    display: block;
    font-size: 0.76rem;
    color: var(--text-muted);
}

.city-tab-btn.active {
    border-color: var(--brand-primary);
    background: var(--brand-navy-light);
}

.city-content-preview {
    background: #ffffff;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.city-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.city-panel p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-main);
}

.city-link-action {
    font-weight: 700;
    color: var(--brand-primary);
    white-space: nowrap;
}

/* ==========================================================================
   SERVICES GRID SYSTEM
   ========================================================================== */
.physio-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.physio-service-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.physio-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: #bfdbfe;
}

.service-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 16px;
}

.service-tag {
    background: var(--brand-navy-dark);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    position: absolute;
    top: 14px;
    left: 14px;
}

.service-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-meta-pill {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-accent);
    margin-bottom: 8px;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.service-title a { color: var(--brand-navy-dark); }
.service-title a:hover { color: var(--brand-primary); }

.service-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 18px;
}

.service-card-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--brand-primary);
}

.service-link:hover {
    color: var(--brand-accent);
    transform: translateX(4px);
}

/* ==========================================================================
   CONDITIONS GRID & LIVE SEARCH FILTER
   ========================================================================== */
.conditions-filter-search {
    max-width: 540px;
    margin: 0 auto 30px;
}

.search-input {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    outline: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(30, 68, 143, 0.12);
}

.physio-conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.physio-condition-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.physio-condition-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}

.condition-icon-badge {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.condition-name {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.condition-name a { color: var(--brand-navy-dark); }
.condition-name a:hover { color: var(--brand-primary); }

.condition-summary {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
    flex-grow: 1;
    margin-bottom: 14px;
}

.condition-action-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-primary);
}

/* ==========================================================================
   HOW IT WORKS (4 STEPS)
   ========================================================================== */
.steps-flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.step-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #bfdbfe;
}

.step-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--brand-navy-light);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 20px;
}

.step-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.15rem;
    color: var(--brand-navy-dark);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   CITY HUBS SECTION
   ========================================================================== */
.city-hubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.city-hub-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.hub-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.hub-tag {
    display: inline-block;
    background: #dcfce7;
    color: #15803d;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 6px;
}

.hub-header h3 {
    font-size: 1.4rem;
    color: var(--brand-navy-dark);
    margin: 0;
}

.hub-icon {
    font-size: 2rem;
}

.hub-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.hub-areas-list strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: var(--brand-navy-dark);
}

.chips-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.hub-chip {
    background: var(--bg-alt);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-main);
}

/* ==========================================================================
   FOR PHYSIOTHERAPISTS BANNER
   ========================================================================== */
.physio-pro-banner-section {
    padding: 40px 0;
}

.pro-banner-card {
    background: linear-gradient(135deg, var(--brand-navy-dark) 0%, #1e448f 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-xl);
}

.pro-badge {
    background: #fbbf24;
    color: #0f244e;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 12px;
}

.pro-banner-content h2 {
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 14px;
}

.pro-banner-content p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.pro-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.pro-banner-icon-side {
    display: flex;
    justify-content: center;
}

.pro-badge-circle {
    background: rgba(255,255,255,0.08);
    border: 2px dashed rgba(255,255,255,0.25);
    border-radius: 50%;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.pro-badge-circle .big-icon {
    font-size: 3.5rem;
    margin-bottom: 8px;
}

@media (max-width: 860px) {
    .pro-banner-card {
        grid-template-columns: 1fr;
        padding: 35px 25px;
    }
    .pro-banner-icon-side { display: none; }
}

/* ==========================================================================
   TESTIMONIALS & CLINICAL REVIEWS
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.t-rating {
    font-size: 1rem;
    margin-bottom: 14px;
}

.t-quote {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 44px;
    height: 44px;
    background: var(--brand-navy-light);
    color: var(--brand-primary);
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.t-author strong {
    display: block;
    font-size: 0.92rem;
    color: var(--brand-navy-dark);
}

.t-author span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ==========================================================================
   BLOG CARDS
   ========================================================================== */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.physio-blog-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.physio-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card-thumb {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 12px;
}

.blog-time-badge {
    background: rgba(15,36,78,0.85);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    position: absolute;
    top: 12px;
    left: 12px;
}

.blog-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.blog-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.blog-title a { color: var(--brand-navy-dark); }
.blog-title a:hover { color: var(--brand-primary); }

.blog-excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 16px;
}

.blog-read-more {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--brand-primary);
}

/* ==========================================================================
   FAQS ACCORDION
   ========================================================================== */
.faqs-wrapper-max {
    max-width: 820px;
    margin: 0 auto;
}

.physio-accordion-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.physio-accordion-header {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--brand-navy-dark);
}

.accordion-icon {
    font-size: 1.4rem;
    color: var(--brand-primary);
    transition: transform 0.2s ease;
}

.physio-accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.physio-accordion-content {
    border-top: 1px solid var(--border-color);
    padding: 18px 22px;
    background: #fafafa;
}

.physio-accordion-content p {
    margin-bottom: 0;
    font-size: 0.94rem;
    color: var(--text-main);
    line-height: 1.6;
}

/* ==========================================================================
   FINAL CONVERSION SECTION
   ========================================================================== */
.physio-final-cta-section {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-navy-dark) 100%);
    color: #ffffff;
    padding: 70px 0;
}

.physio-final-cta-section h2 {
    color: #ffffff;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 14px;
}

.physio-final-cta-section p {
    color: #e2e8f0;
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto 30px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================================================
   FORMS & INTERACTIVE CONTROLS
   ========================================================================== */
.physio-form-card {
    background: #ffffff;
    border-radius: var(--radius-md);
}

.physio-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.col-full { grid-column: 1 / -1; }
.col-half { grid-column: auto; }

.form-group label {
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--brand-navy-dark);
    margin-bottom: 6px;
}

.form-group label .req { color: var(--brand-accent); }

.form-control {
    width: 100%;
    padding: 11px 14px;
    font-size: 0.92rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--text-main);
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(30, 68, 143, 0.12);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    cursor: pointer;
}

.checkbox-label input { margin-top: 3px; }

.physio-form-status-msg {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    line-height: 1.45;
}
.physio-form-status-msg.msg-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.physio-form-status-msg.msg-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

@media (max-width: 600px) {
    .physio-form-grid { grid-template-columns: 1fr; }
    .col-half { grid-column: 1 / -1; }
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
.physio-main-footer {
    background: var(--bg-footer);
    color: #94a3b8;
    padding-top: 0;
}

.footer-cta-strip {
    background: var(--brand-navy-dark);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 30px 0;
}

.cta-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-strip-text h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.cta-strip-text p {
    color: #cbd5e1;
    font-size: 0.92rem;
    margin: 0;
}

.cta-strip-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-main-content {
    padding: 60px 20px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1fr 1fr;
    gap: 40px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-bio {
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 18px;
}

.contact-line {
    display: flex;
    gap: 8px;
    font-size: 0.84rem;
    margin-bottom: 8px;
    color: #cbd5e1;
}
.contact-line a { color: #ffffff; }

.footer-heading {
    color: #ffffff;
    font-size: 1.08rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: var(--brand-accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li a {
    display: block;
    padding: 5px 0;
    font-size: 0.88rem;
    color: #94a3b8;
}
.footer-links li a:hover { color: #ffffff; transform: translateX(3px); }
.footer-links li a.link-highlight { color: #38bdf8; font-weight: 700; }

.footer-city-box {
    margin-bottom: 14px;
    font-size: 0.84rem;
    line-height: 1.45;
}
.footer-city-box strong { color: #ffffff; display: block; margin-bottom: 2px; }

.footer-pro-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-top: 18px;
}
.footer-pro-card strong { color: #ffffff; font-size: 0.88rem; }
.footer-pro-card p { font-size: 0.8rem; margin: 4px 0 8px; }
.btn-pro-register { color: #fbbf24; font-weight: 700; font-size: 0.82rem; }

.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0 30px;
    font-size: 0.8rem;
}

.bottom-legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.bottom-legal-links a { color: #cbd5e1; }
.bottom-legal-links .sep { color: #475569; }

.medical-disclaimer-text {
    font-size: 0.76rem;
    line-height: 1.5;
    color: #64748b;
    text-align: center;
    margin-bottom: 14px;
}

.copyright-text {
    text-align: center;
    color: #64748b;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FLOATING WHATSAPP & MOBILE STICKY BAR
   ========================================================================== */
.physio-floating-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}

.floating-wa-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: var(--transition);
}

.floating-wa-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}

.floating-wa-tooltip {
    position: absolute;
    right: 70px;
    background: var(--brand-navy-dark);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.floating-wa-btn:hover .floating-wa-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Mobile Sticky Conversion Bar */
.physio-mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1001;
    padding: 8px 12px;
}

.mobile-sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.2;
}

.mobile-sticky-btn .icon { font-size: 1.2rem; margin-bottom: 2px; }

.mobile-sticky-btn.btn-call { color: var(--text-main); }
.mobile-sticky-btn.btn-wa { background: #25d366; color: #ffffff !important; margin: 0 6px; }
.mobile-sticky-btn.btn-book { background: var(--brand-primary); color: #ffffff !important; }

@media (max-width: 768px) {
    .physio-mobile-sticky-bar {
        display: flex;
    }
    .physio-floating-wa {
        bottom: 75px;
        right: 18px;
    }
    body {
        padding-bottom: 60px;
    }
}

/* ==========================================================================
   PAGE HERO BANNERS & BREADCRUMBS
   ========================================================================== */
.physio-breadcrumbs {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 0.84rem;
    color: var(--text-muted);
}
.physio-breadcrumbs a { color: var(--text-muted); }
.physio-breadcrumbs a:hover { color: var(--brand-primary); }
.physio-breadcrumbs .sep { margin: 0 8px; color: #cbd5e1; }
.physio-breadcrumbs .current { color: var(--brand-navy-dark); font-weight: 600; }

.page-header-banner {
    background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 100%);
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}
.page-header-banner.banner-pro {
    background: linear-gradient(135deg, #fefce8 0%, #ffffff 100%);
}

.banner-badge {
    display: inline-block;
    background: var(--brand-navy-light);
    color: var(--brand-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}
.badge-pro { background: #fef3c7; color: #b45309; }

.banner-title {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    color: var(--brand-navy-dark);
    margin-bottom: 10px;
}

.banner-lead {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto;
}

.page-content-wrap {
    padding: 60px 20px;
}

/* Single Service & Condition Layout */
.service-single-hero, .condition-single-hero, .city-single-hero {
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 100%);
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-hero-badge, .condition-hero-badge, .city-hero-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.service-hero-title, .condition-hero-title, .city-hero-title {
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    color: var(--brand-navy-dark);
    margin-bottom: 12px;
}

.service-hero-lead, .condition-hero-lead, .city-hero-lead {
    font-size: 1.12rem;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 20px;
}

.service-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 24px;
}

.service-hero-actions, .condition-hero-actions, .city-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-layout-grid, .condition-layout-grid, .city-layout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    padding: 60px 0;
}

@media (max-width: 980px) {
    .service-layout-grid, .condition-layout-grid, .city-layout-grid {
        grid-template-columns: 1fr;
    }
}

.sticky-sidebar-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.sidebar-card-header {
    text-align: center;
    margin-bottom: 18px;
}
.sidebar-card-header h4 { font-size: 1.25rem; margin-bottom: 4px; }
.sidebar-card-header p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.sidebar-contact-direct {
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    text-align: center;
}
.sidebar-contact-direct p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; }
.sidebar-phone-link { display: block; margin-top: 8px; font-size: 0.88rem; font-weight: 700; color: var(--brand-navy-dark); }

/* Symptoms Card */
.condition-symptoms-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--brand-primary);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 30px;
}

.symptoms-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.symptoms-header h3 { margin: 0; font-size: 1.25rem; }

.symptoms-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
}

.symptoms-list li {
    font-size: 0.92rem;
    color: var(--text-main);
    display: flex;
    gap: 8px;
}
.bullet-check { color: var(--brand-accent); font-weight: 800; }

/* Related Grid */
.related-conditions-grid, .related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
    margin: 18px 0 30px;
}

.rel-cond-card, .rel-serv-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}
.rel-cond-card:hover, .rel-serv-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.rel-title { font-size: 0.92rem; font-weight: 700; color: var(--brand-navy-dark); }
.rel-arrow { color: var(--brand-primary); font-weight: 700; }

.medical-disclaimer-card {
    background: #fffbeb;
    border: 1px solid #fef3c7;
    border-left: 4px solid #d97706;
    border-radius: var(--radius-md);
    padding: 18px 22px;
    font-size: 0.88rem;
    color: #92400e;
    line-height: 1.5;
    margin-top: 30px;
}

/* Area Grid in City */
.city-full-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin: 20px 0 40px;
}

.area-block-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.area-block-card h4 { font-size: 0.92rem; margin: 0; }
.coverage-status { font-size: 0.72rem; color: #16a34a; font-weight: 700; }

/* Single Blog Article */
.single-post-container { padding: 40px 20px 60px; }
.single-post-layout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}
@media (max-width: 900px) {
    .single-post-layout-grid { grid-template-columns: 1fr; }
}

.single-post-header { margin-bottom: 24px; }
.single-post-title { font-size: clamp(2rem, 3.2vw, 2.6rem); margin: 12px 0 16px; }

.post-author-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.author-avatar-badge {
    font-size: 1.8rem;
}
.author-name { display: block; font-size: 0.92rem; color: var(--brand-navy-dark); }
.post-date { display: block; font-size: 0.78rem; color: var(--text-muted); }

.single-post-featured-image {
    margin: 24px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.single-post-body {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text-main);
}
.single-post-body h2 { margin-top: 36px; font-size: 1.6rem; }
.single-post-body h3 { margin-top: 24px; font-size: 1.3rem; }

.in-article-cta-box {
    background: var(--brand-navy-light);
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: center;
    margin: 36px 0;
}
.ia-icon { font-size: 2.4rem; }
.ia-content h4 { font-size: 1.2rem; margin-bottom: 6px; }
.ia-content p { font-size: 0.92rem; margin-bottom: 12px; color: var(--text-muted); }

.author-bio-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 30px;
}
.author-bio-avatar { font-size: 2.2rem; }
.author-bio-info h4 { font-size: 1rem; margin-bottom: 4px; }
.author-bio-info p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.sidebar-widget {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.sidebar-widget h4 { font-size: 1.15rem; margin-bottom: 12px; }
.sidebar-widget ul { list-style: none; padding: 0; margin: 0; }
.sidebar-widget ul li a { display: block; padding: 6px 0; font-size: 0.92rem; border-bottom: 1px solid #f1f5f9; }

/* Contact Page Layout */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
@media (max-width: 860px) {
    .contact-page-grid { grid-template-columns: 1fr; }
}

.contact-method-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-bottom: 16px;
    display: flex;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}
.contact-method-card.priority-wa {
    border-left: 4px solid var(--brand-whatsapp);
    background: #f0fdf4;
}
.cm-icon { font-size: 2rem; flex-shrink: 0; }
.cm-tag {
    display: inline-block;
    background: #22c55e;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-bottom: 6px;
}
.cm-body h3 { font-size: 1.15rem; margin-bottom: 4px; }
.cm-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; }

.contact-hubs-box {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}
.contact-hubs-box h4 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-hubs-box p { font-size: 0.88rem; margin-bottom: 6px; }

/* ==========================================================================
   ANIMATION CLASSES (VANILLA JS INTERSECTION OBSERVER)
   ========================================================================== */
.animate-fade-in {
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.6s ease-out;
}
.animate-slide-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-slide-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-visible {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }
.delay-4 { transition-delay: 0.42s; }
