/* ==========================================================================
   HEALTHCARE DIRECTORY INDIA - MASTER STYLESHEET
   Path: /assets/styles.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET, BASE & GLOBAL STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    background-color: #f8fafc;
    color: #1e293b;
}

body h1, body h2, body h3, body h4, body h5, body h6 {
    text-align: center;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    color: #0d9488;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   2. HEADER & MOBILE UTILITY BAR
   -------------------------------------------------------------------------- */
#healthcare-header {
    background-color: #ffffff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #e2e8f0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: block;
    width: 250px;
    height: 50px;
    object-fit: contain;
}

.post-practice-btn {
    display: block;
    width: 250px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.post-practice-btn:hover {
    transform: scale(1.02);
}

.post-practice-header-slot {
    display: block;
}

.mobile-post-practice-wrapper {
    display: none;
    background-color: #ffffff;
    padding: 10px 0 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-post-practice-wrapper .container {
    display: flex;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   3. BANNER & BREADCRUMBS NAVIGATION
   -------------------------------------------------------------------------- */
.banner-section {
    background: #ccfbf1;
    padding: 12px 0;
    border-bottom: 1px solid #99f6e4;
}

.banner-box {
    text-align: center;
    font-size: 0.95rem;
    color: #0f766e;
    line-height: 1.4;
}

.breadcrumbs-nav {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumbs-content {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.breadcrumbs-content .separator {
    margin: 0 8px;
    color: #94a3b8;
}

.breadcrumbs-content .current {
    color: #64748b;
}

/* --------------------------------------------------------------------------
   4. HERO & DIRECTORY 5-FILTER ENGINE
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: 45px 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 15px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.hero-section p {
    color: #cbd5e1;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 15px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #2dd4bf;
    margin-bottom: 6px;
}

.filter-group select,
.search-bar-wrapper input {
    width: 100%;
    padding: 11px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.95rem;
}

.filter-group select:focus,
.search-bar-wrapper input:focus {
    outline: 2px solid #2dd4bf;
    background: rgba(15, 23, 42, 0.95);
}

.search-bar-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-reset {
    padding: 10px 20px;
    background-color: #e11d48;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-reset:hover {
    background-color: #be123c;
}

/* --------------------------------------------------------------------------
   5. JUMP NAVIGATION
   -------------------------------------------------------------------------- */
.jump-navigation {
    background-color: #1e293b;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.jump-navigation .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
}

.jump-title {
    color: #94a3b8;
    font-weight: 700;
}

.jump-navigation a {
    color: #2dd4bf;
    font-weight: 600;
    transition: color 0.2s ease;
}

.jump-navigation a:hover {
    color: #5eead4;
}

/* --------------------------------------------------------------------------
   6. DIRECTORY LISTINGS GRID & PRACTICE CARDS
   -------------------------------------------------------------------------- */
.healthcare-listings-section {
    padding: 40px 0;
}

.healthcare-listings-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #0f172a;
}

.section-intro {
    color: #64748b;
    margin-bottom: 25px;
}

.healthcare-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.practice-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background-color: #fff;
}

.practice-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.practice-card.tier-featured {
    background-color: #e0f2fe;
    border: 1px solid #0284c7;
}

.practice-card.tier-super {
    background-color: #f3e8ff;
    border-color: #d8b4fe;
}

.practice-card.tier-premium {
    background-color: #dcfce7;
    border-color: #86efac;
}

.practice-card.tier-general {
    background-color: #fff;
}

.image-container {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

.featured-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: #0d9488;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    animation: badgeBounce 2.5s infinite ease-in-out;
}

@keyframes badgeBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-2px); }
}

.practice-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.practice-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.practice-categories,
.practice-location {
    font-size: 0.82rem;
    color: #475569;
    margin-bottom: 4px;
}

.practice-categories {
    margin-bottom: 6px;
}

.practice-location {
    font-weight: 600;
}

.btn-view-profile {
    display: block;
    text-align: center;
    background-color: #0d9488;
    color: #fff;
    font-weight: 700;
    padding: 8px;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 0.85rem;
    transition: background-color 0.2s ease;
}

.btn-view-profile:hover {
    background-color: #0f766e;
    text-decoration: none;
}

.view-more-container {
    text-align: center;
    margin-top: 30px;
}

.btn-view-more {
    padding: 12px 30px;
    background-color: #0f172a;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-view-more:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
}

.no-listings-feedback {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #64748b;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.no-listings-feedback .feedback-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   7. SEO CONTENT & DESIGNER INFORMATION CARDS
   -------------------------------------------------------------------------- */
.page-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.section-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 35px;
    line-height: 1.6;
}

.section-header-center {
    text-align: center;
}

.about-section,
.why-choose-section,
.seo-section,
.faqs-section,
.disclaimer-section {
    padding: 35px 0;
    border-top: 1px solid #e2e8f0;
}

.about-section h2,
.why-choose-section h2,
.seo-section h2,
.faqs-section h2,
.disclaimer-section h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0f172a;
}

.designer-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.designer-card {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.designer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.trust-card {
    border-left: 4px solid #0d9488;
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
    text-align: center;
    display: block;
    width: 100%;
    transition: transform 0.2s ease;
}

.designer-card:hover .card-icon {
    transform: scale(1.1);
}

.designer-card h3 {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 6px;
    text-align: center;
}

.designer-card p {
    font-size: 0.9rem;
    color: #64748b;
}

.seo-paragraph-lead {
    margin-bottom: 25px;
}

.seo-paragraph-spacing {
    margin-top: 20px;
}

/* --------------------------------------------------------------------------
   8. PRICING SECTION & PACKAGES
   -------------------------------------------------------------------------- */
.pricing-section {
    margin: 50px 0 30px;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 2px solid #0d9488;
    background: #fcfefe;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d9488;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 14px;
    border-radius: 20px;
}

.pricing-card-header h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.pricing-target {
    font-size: 0.9rem;
    color: #64748b;
    min-height: 40px;
    line-height: 1.4;
}

.pricing-cost {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.price-val {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
}

.price-duration {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.prelaunch-offer {
    background: #ecfdf5;
    border: 1px dashed #059669;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.prelaunch-offer-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #047857;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.prelaunch-offer-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #065f46;
    margin: 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li::before {
    content: "✓";
    color: #0d9488;
    font-weight: 800;
}

/* --------------------------------------------------------------------------
   9. HEALTHCARE BUSINESS LISTING INQUIRY FORM
   -------------------------------------------------------------------------- */
.listing-form-wrapper {
    margin-top: 45px;
    background: linear-gradient(135deg, #0f172a 0%, #134e4a 50%, #042f2e 100%);
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    border: 1px solid rgba(45, 212, 191, 0.25);
    position: relative;
    overflow: hidden;
}

.listing-form-wrapper::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.form-header-area {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.form-header-area h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: #5eead4;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.form-header-area p {
    font-size: 0.95rem;
    color: #ccfbf1;
    line-height: 1.6;
}

.designer-form {
    position: relative;
    z-index: 2;
}

.form-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #99f6e4;
    margin-bottom: 8px;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 13px 16px;
    border-radius: 8px;
    border: 1px solid rgba(45, 212, 191, 0.35);
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-field input::placeholder {
    color: #64748b;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #2dd4bf;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.25);
}

.form-field select option {
    background: #0f172a;
    color: #ffffff;
}

.captcha-container {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(45, 212, 191, 0.3);
    border-radius: 8px;
    padding: 16px 20px;
}

.captcha-title-label {
    display: block;
    margin-bottom: 6px;
}

.captcha-options {
    display: flex;
    gap: 25px;
    margin-top: 10px;
}

.captcha-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    cursor: pointer;
    font-size: 1rem;
    text-transform: none;
    font-weight: 600;
}

.captcha-radio-label input[type="radio"] {
    accent-color: #2dd4bf;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-submit-container {
    grid-column: 1 / -1;
    margin-top: 10px;
    text-align: center;
}

.btn-submit-listing {
    background: linear-gradient(135deg, #0d9488 0%, #059669 100%);
    color: #ffffff;
    border: none;
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit-listing:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.6);
    filter: brightness(1.1);
}

.confirmation-box {
    background: #f0fdf4;
    border: 2px solid #86efac;
    border-radius: 12px;
    padding: 25px;
    margin-top: 35px;
    text-align: center;
    color: #14532d;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.confirmation-box h2 {
    color: #166534;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.confirmation-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.call-advice-badge {
    display: inline-block;
    background: #0d9488;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
    margin-top: 8px;
    box-shadow: 0 4px 10px rgba(13, 148, 136, 0.3);
}

.call-advice-badge:hover {
    background-color: #0f766e;
    transform: scale(1.03);
    text-decoration: none;
}

.error-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

/* --------------------------------------------------------------------------
   10. INDIVIDUAL PRACTICE DETAILS PAGE
   -------------------------------------------------------------------------- */
.details-section-wrapper {
    padding: 35px 0;
}

.details-wrapper {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 35px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.details-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 35px;
}

.details-media-col {
    display: flex;
    flex-direction: column;
}

.details-main-img {
    width: 100%;
    height: auto;
    max-height: 280px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

.details-brand-box {
    margin-top: 15px;
    padding: 12px;
    background: #f0fdfa;
    border-radius: 6px;
    border: 1px solid #ccfbf1;
    text-align: center;
}

.details-brand-label {
    font-size: 0.85rem;
    color: #0f766e;
    font-weight: 700;
}

.details-brand-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0d9488;
    margin-top: 2px;
}

.details-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    text-align: left;
}

.details-meta-bar {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 15px;
    text-align: left;
}

.details-specialty-inline {
    display: inline-block;
    margin-left: 8px;
}

.details-location-box {
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 20px;
    background: #f8fafc;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.details-section-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    text-align: left;
}

.details-products-block {
    margin-top: 20px;
}

.details-description-block {
    margin-top: 25px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.badge-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.badge-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid #bae6fd;
}

.description-content {
    color: #334155;
    line-height: 1.75;
    font-size: 0.96rem;
    text-align: left;
}

.cta-group {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.2s ease, box-shadow 0.15s ease;
    border: none;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.btn-whatsapp { 
    background-color: #25D366; 
    color: #ffffff !important; 
}
.btn-whatsapp:hover { 
    background-color: #1eb954; 
}

.btn-phone { 
    background-color: #0f172a; 
    color: #ffffff !important; 
}
.btn-phone:hover { 
    background-color: #1e293b; 
}

.btn-directions { 
    background-color: #0284c7; 
    color: #ffffff !important; 
    width: 100%; 
}
.btn-directions:hover { 
    background-color: #0369a1; 
}

.not-found-wrapper {
    padding: 60px 15px;
    text-align: center;
}

.not-found-return-btn {
    display: inline-block;
    margin-top: 20px;
    width: auto;
    padding: 10px 25px;
}

/* --------------------------------------------------------------------------
   11. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-item {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    margin-bottom: 10px;
    cursor: pointer;
    user-select: none;
    text-align: left !important;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.faq-item:hover {
    transform: translateX(4px);
    border-color: #2dd4bf;
}

.faq-item h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 5px 0;
    font-size: 1.05rem;
    color: #0f766e;
    text-align: left !important;
}

.faq-item h3::after {
    content: "+";
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #0d9488;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: rotate(45deg);
}

.faq-item p {
    display: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #cbd5e1;
    font-size: 0.95rem;
    color: #1e293b;
    text-align: left !important;
}

.faq-item.active p {
    display: block;
}

/* --------------------------------------------------------------------------
   12. FOOTER (5-COLUMN SYSTEM)
   -------------------------------------------------------------------------- */
#healthcare-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding-top: 40px;
    padding-bottom: 20px;
}

.footer-5-col {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.footer-col {
    text-align: left;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 12px;
    text-align: left;
}

.footer-col p {
    font-size: 0.88rem;
    line-height: 1.5;
}

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

.footer-col ul li {
    margin-bottom: 8px;
    text-align: left;
}

.footer-col ul li a {
    color: #cbd5e1;
    font-size: 0.88rem;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #2dd4bf;
    text-decoration: underline;
}

.footer-seo-text {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #2dd4bf;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   13. MEDIA QUERIES & RESPONSIVE DESIGN
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .healthcare-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .filters-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-5-col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .healthcare-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .details-grid {
        grid-template-columns: 300px 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .header-container {
        justify-content: center;
    }
    .post-practice-header-slot {
        display: none;
    }
    .mobile-post-practice-wrapper {
        display: block;
    }
    body {
        text-align: center;
    }
    .banner-box,
    .hero-section p,
    .section-intro,
    .about-section p,
    .why-choose-section p,
    .seo-section p,
    .disclaimer-section p,
    .designer-card {
        text-align: center !important;
    }
    .footer-5-col {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px 20px !important;
        text-align: center !important;
    }
    .footer-col-about {
        grid-column: span 2 !important;
        text-align: center !important;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .footer-col {
        text-align: center !important;
    }
    .footer-col h3 {
        text-align: center !important;
    }
    .footer-col ul {
        padding: 0 !important;
    }
    .footer-col ul li {
        text-align: center !important;
    }
    .filters-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    .filter-group label {
        text-align: center;
    }
    .search-bar-wrapper {
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
    }
    .search-bar-wrapper input {
        text-align: center;
    }
    .healthcare-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .listing-form-wrapper {
        padding: 30px 18px;
    }
    .form-grid-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .captcha-options {
        flex-direction: column;
        gap: 12px;
    }
    .btn-submit-listing {
        width: 100%;
        padding: 14px 20px;
    }
    .details-wrapper {
        padding: 20px 15px;
        text-align: center;
    }
    .details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .details-title,
    .details-meta-bar,
    .details-location-box,
    .details-section-title,
    .description-content {
        text-align: center !important;
    }
    .details-main-img {
        max-width: 100%;
        margin: 0 auto;
    }
    .badge-tags-container {
        justify-content: center !important;
    }
    .cta-row-2 {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .btn-action {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .breadcrumbs-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .breadcrumbs-content .separator {
        display: none;
    }
    .healthcare-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-5-col {
        grid-template-columns: 1fr;
    }
}