/* ============================================
   BestPT AI - Premium Physical Therapy
   Color: Navy #0a1628 | Gold #c9a84c | White
   ============================================ */

:root {
    --navy: #0a1628;
    --navy-light: #132038;
    --navy-mid: #1a2d4a;
    --gold: #c9a84c;
    --gold-light: #dfc06a;
    --gold-dark: #b08e30;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --gray-100: #f1f3f7;
    --gray-200: #e2e6ee;
    --gray-300: #c5cad6;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --teal: #0d9488;
    --teal-light: #14b8a6;
    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.1);
    --shadow-lg: 0 10px 40px rgba(10, 22, 40, 0.15);
    --shadow-xl: 0 20px 60px rgba(10, 22, 40, 0.2);
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-700);
    line-height: 1.7;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    transition: opacity var(--transition);
}

.logo a:hover {
    opacity: 0.85;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--navy);
    font-weight: 800;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--gold);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav a:hover,
.nav a.active {
    color: var(--white);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--gold-light);
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.hero-image-placeholder i {
    font-size: 80px;
    color: rgba(201, 168, 76, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat .number {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    display: block;
}

.hero-stat .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============ SECTIONS ============ */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-light {
    background: var(--off-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.7;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

/* ============ SERVICES ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(13, 148, 136, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 28px;
    background: linear-gradient(135deg, var(--gold), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 14px;
}

.service-card p {
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 14px;
}

.service-link:hover {
    gap: 10px;
    color: var(--teal);
}

/* ============ WHY CHOOSE US ============ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.why-content p {
    color: var(--gray-500);
    font-size: 16px;
    margin-bottom: 32px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 20px;
}

.why-feature h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.why-feature p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 0;
}

.why-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
}

.why-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-image-placeholder i {
    font-size: 60px;
    color: var(--gray-300);
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--white);
    font-size: 15px;
}

.testimonial-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============ CTA SECTION ============ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
}

.cta-phone i {
    color: var(--gold);
}

/* ============ ABOUT PAGE ============ */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(13, 148, 136, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--gold);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: var(--gray-500);
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-photo {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo i {
    font-size: 60px;
    color: var(--gray-300);
}

.team-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 28px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.team-info .role {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 14px;
    color: var(--gray-500);
}

/* ============ SERVICES PAGE ============ */
.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.service-detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
}

.service-detail-list li i {
    color: var(--teal);
    font-size: 14px;
    min-width: 20px;
}

.service-detail-image {
    border-radius: 20px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.service-image-placeholder {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-placeholder i {
    font-size: 60px;
    color: var(--gray-300);
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 22px;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.contact-info-card p {
    font-size: 15px;
    color: var(--gray-500);
}

.contact-info-card a {
    color: var(--gold-dark);
    font-weight: 600;
}

.contact-info-card a:hover {
    color: var(--teal);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: var(--gray-500);
    margin-bottom: 28px;
    font-size: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: var(--gray-900);
    background: var(--off-white);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form button {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

/* Map */
.map-section {
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============ FAQ PAGE ============ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.faq-question i {
    color: var(--gold);
    font-size: 14px;
    transition: transform var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 28px 24px;
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ============ AI PAIN ASSESSMENT ============ */
.assessment-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.assessment-step {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    position: relative;
    transition: var(--transition);
}

.assessment-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.assessment-step-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 42px;
    font-weight: 800;
    color: rgba(201, 168, 76, 0.1);
    line-height: 1;
}

.assessment-step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--gold);
}

.assessment-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.assessment-step p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

.pain-conditions-header {
    text-align: center;
    margin-bottom: 40px;
}

.pain-conditions-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
}

.pain-conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.pain-condition {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.pain-condition:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.pain-condition-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(13, 148, 136, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
}

.pain-condition h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.pain-condition p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

.ai-advantage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 20px;
    padding: 48px 32px;
}

.ai-advantage-item {
    text-align: center;
}

.ai-advantage-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.ai-advantage-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ============ INSURANCE ============ */
.insurance-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
}

.insurance-logo {
    padding: 20px 32px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-700);
    transition: var(--transition);
}

.insurance-logo:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: var(--gold);
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

/* ============ ASSESSMENT WIZARD ============ */
.assess-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.assess-feature-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.assess-feature-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.assess-feature-card i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 12px;
}

.assess-feature-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.assess-feature-card p {
    font-size: 13px;
    color: var(--gray-500);
}

.wizard-box {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--gray-200);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
}

.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
}

.wiz-step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    background: var(--gray-100);
    color: var(--gray-500);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    flex-shrink: 0;
}

.wiz-step-dot.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.wiz-step-dot.done {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.wiz-line {
    width: 60px;
    height: 3px;
    background: var(--gray-200);
    transition: var(--transition);
}

.wiz-line.done {
    background: var(--teal);
}

.wiz-step {
    display: none;
}

.wiz-step.active {
    display: block;
}

.wiz-step h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.wiz-desc {
    text-align: center;
    color: var(--gray-500);
    font-size: 16px;
    margin-bottom: 32px;
}

.wiz-sub {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.opt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.opt-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.opt-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.opt-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.opt-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: var(--off-white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.opt-btn:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.opt-btn.selected {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.opt-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    font-size: 20px;
}

.opt-btn.selected .opt-icon {
    background: var(--gold);
    color: var(--navy);
}

.opt-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
}

.opt-hint {
    font-size: 11px;
    color: var(--gray-500);
    line-height: 1.4;
}

.wiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gray-700);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--gray-200);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-primary[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
    50% { box-shadow: 0 0 20px 4px rgba(201, 168, 76, 0.3); }
}

/* Severity Row */
.severity-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    max-width: 520px;
    margin: 0 auto 8px;
}

.sev-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    background: var(--off-white);
    border: 2px solid var(--gray-200);
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
}

.sev-btn:hover {
    border-color: var(--gold);
}

.sev-btn.selected.low { background: #D1FAE5; border-color: #10B981; color: #065F46; }
.sev-btn.selected.med { background: #FEF3C7; border-color: #F59E0B; color: #92400E; }
.sev-btn.selected.high { background: #FEE2E2; border-color: #EF4444; color: #991B1B; }

.sev-labels {
    display: flex;
    justify-content: space-between;
    max-width: 520px;
    margin: 0 auto;
    font-size: 12px;
    color: var(--gray-500);
}

/* Checkboxes */
.check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-size: 14px;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
}

.check-item:hover {
    border-color: var(--gold);
}

.check-box {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.check-item.checked {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.check-item.checked .check-box {
    background: var(--gold);
    border-color: var(--gold);
}

.check-item.checked .check-box::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: var(--navy);
}

/* Analysis Overlay */
.analysis-overlay {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    text-align: center;
}

.analysis-overlay.active {
    display: flex;
}

.analysis-spinner {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.analysis-ring {
    position: absolute;
    inset: 0;
    border: 4px solid var(--gray-200);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.analysis-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--gold);
}

.analysis-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.analysis-bar-wrap {
    width: 300px;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.analysis-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    border-radius: 3px;
    transition: width 0.6s ease;
}

/* Results */
.result-wrap {
    display: none;
}

.result-wrap.active {
    display: block;
}

.result-head {
    text-align: center;
    margin-bottom: 40px;
}

.result-head h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.result-head p {
    color: var(--gray-500);
    font-size: 16px;
}

.result-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.result-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.result-card h3 i {
    color: var(--gold);
    margin-right: 8px;
}

.res-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.res-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-dark);
}

.res-tag-red {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
    color: #DC2626;
}

.res-tag-green {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
    color: #059669;
}

.cond-card {
    padding: 20px;
    background: var(--off-white);
    border-radius: 14px;
    margin-bottom: 16px;
}

.cond-card:last-child {
    margin-bottom: 0;
}

.cond-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.conf-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.conf-track {
    flex: 1;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.conf-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    border-radius: 4px;
    transition: width 1s ease;
}

.conf-bar span {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-dark);
    min-width: 40px;
}

.cond-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

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

.tx-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--off-white);
    border-radius: 14px;
}

.tx-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tx-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.tx-item p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

.sev-indicator {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 14px;
    font-size: 28px;
}

.sev-indicator h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.sev-indicator p {
    font-size: 14px;
    line-height: 1.7;
}

.sev-green { background: #D1FAE5; color: #065F46; }
.sev-green i { color: #10B981; }
.sev-yellow { background: #FEF3C7; color: #92400E; }
.sev-yellow i { color: #F59E0B; }
.sev-red { background: #FEE2E2; color: #991B1B; }
.sev-red i { color: #EF4444; }

.sev-note {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(99, 102, 241, 0.06);
    border-radius: 10px;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
}

.sev-note i {
    color: #6366F1;
    margin-right: 6px;
}

.homecare-list {
    list-style: none;
    padding: 0;
}

.homecare-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-100);
}

.homecare-list li:last-child {
    border-bottom: none;
}

.homecare-list li i {
    color: var(--teal);
    margin-top: 4px;
    flex-shrink: 0;
}

.result-disclaimer {
    padding: 20px 24px;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 14px;
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 32px;
}

.result-disclaimer i {
    color: #F59E0B;
    margin-right: 8px;
}

.result-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ APPOINTMENT PAGE ============ */
/* ============================================
   Booking System - Premium Appointment Page
   ============================================ */

.bk-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--navy) 0%, #0d2137 50%, var(--navy-mid) 100%);
    color: var(--white);
    overflow: hidden;
}

.bk-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 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='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.bk-hero-content { position: relative; text-align: center; max-width: 700px; margin: 0 auto; }

.bk-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.bk-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.bk-hero h1 span { color: var(--gold); }

.bk-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.bk-section {
    padding: 60px 0 100px;
    background: var(--off-white);
}

.bk-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Progress Steps */
.bk-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.bk-step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.4;
    transition: all 0.3s;
}

.bk-step.active { opacity: 1; }

.bk-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.bk-step.active .bk-step-num {
    background: var(--gold);
    color: var(--navy);
}

.bk-step.completed .bk-step-num {
    background: var(--teal);
    color: var(--white);
}

.bk-step span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
}

.bk-step.active span { color: var(--gray-900); }

.bk-step-line {
    width: 40px;
    height: 3px;
    background: var(--gray-200);
    margin: 0 12px;
    border-radius: 3px;
    transition: background 0.3s;
}

.bk-step-line.active { background: var(--gold); }

/* Form Panels */
.bk-panel {
    display: none;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    animation: bkFadeIn 0.4s ease;
}

.bk-panel.active { display: block; }

@keyframes bkFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.bk-panel-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--gray-100);
}

.bk-panel-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bk-panel-icon i { font-size: 22px; color: var(--navy); }

.bk-panel-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.bk-panel-header p {
    font-size: 14px;
    color: var(--gray-500);
}

/* Fields */
.bk-field {
    margin-bottom: 20px;
}

.bk-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.bk-field label .req { color: #EF4444; }

.bk-optional {
    font-weight: 400;
    color: var(--gray-500);
    font-size: 12px;
}

.bk-field input[type="text"],
.bk-field input[type="email"],
.bk-field input[type="tel"],
.bk-field input[type="date"],
.bk-field input[type="time"],
.bk-field select,
.bk-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: var(--gray-900);
    background: var(--off-white);
    transition: all 0.3s;
}

.bk-field input:focus,
.bk-field select:focus,
.bk-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}

.bk-field textarea { resize: vertical; min-height: 120px; }

.bk-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bk-field-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.bk-input-icon {
    position: relative;
}

.bk-input-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    font-size: 14px;
}

.bk-input-icon input { padding-left: 44px; }

/* Date Section */
.bk-date-section {
    background: var(--off-white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid var(--gray-200);
}

.bk-date-section.bk-alt {
    background: rgba(201,168,76,0.04);
    border-color: rgba(201,168,76,0.2);
}

.bk-date-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bk-date-section h3 i { color: var(--gold); }

/* Info Note */
.bk-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(13,148,136,0.06);
    border: 1px solid rgba(13,148,136,0.15);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--gray-700);
}

.bk-note i { color: var(--teal); margin-top: 2px; flex-shrink: 0; }

/* Radio Group */
.bk-radio-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.bk-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray-700);
}

.bk-radio input { display: none; }

.bk-radio-mark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    position: relative;
    transition: all 0.2s;
}

.bk-radio input:checked + .bk-radio-mark {
    border-color: var(--gold);
}

.bk-radio input:checked + .bk-radio-mark::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
}

/* Insurance Badges */
.bk-insurance-logos {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.bk-insurance-logos > span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 12px;
    display: block;
}

.bk-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bk-ins-badge {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-700);
}

/* Body Grid - Pain Area */
.bk-body-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.bk-body-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 8px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--off-white);
    text-align: center;
}

.bk-body-btn:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); }

.bk-body-btn input { display: none; }

.bk-body-btn i { font-size: 22px; color: var(--gray-500); transition: color 0.2s; }

.bk-body-btn span { font-size: 12px; font-weight: 600; color: var(--gray-700); }

.bk-body-btn.selected {
    border-color: var(--gold);
    background: rgba(201,168,76,0.08);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.bk-body-btn.selected i { color: var(--gold-dark); }

/* Pain Scale */
.bk-pain-scale { margin-top: 4px; }

.bk-pain-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.bk-pain-btns {
    display: flex;
    gap: 6px;
}

.bk-pain-btn {
    flex: 1;
    padding: 12px 0;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    background: var(--off-white);
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s;
}

.bk-pain-btn:hover { border-color: var(--gold); }

.bk-pain-btn.active {
    color: var(--white);
    border-color: transparent;
}

.bk-pain-btn[data-val="0"].active,
.bk-pain-btn[data-val="1"].active,
.bk-pain-btn[data-val="2"].active,
.bk-pain-btn[data-val="3"].active { background: #10b981; border-color: #10b981; }

.bk-pain-btn[data-val="4"].active,
.bk-pain-btn[data-val="5"].active,
.bk-pain-btn[data-val="6"].active { background: #f59e0b; border-color: #f59e0b; }

.bk-pain-btn[data-val="7"].active,
.bk-pain-btn[data-val="8"].active { background: #f97316; border-color: #f97316; }

.bk-pain-btn[data-val="9"].active,
.bk-pain-btn[data-val="10"].active { background: #ef4444; border-color: #ef4444; }

/* Duration Opts */
.bk-duration-opts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.bk-dur-btn {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    background: var(--off-white);
}

.bk-dur-btn:hover { border-color: var(--gold); }

.bk-dur-btn input { display: none; }

.bk-dur-btn span { font-size: 13px; font-weight: 600; color: var(--gray-700); }

.bk-dur-btn.selected {
    border-color: var(--gold);
    background: rgba(201,168,76,0.08);
}

/* Char Count */
.bk-char-count {
    text-align: right;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* Consent */
.bk-consent {
    margin: 24px 0;
    padding: 20px;
    background: var(--off-white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.bk-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
}

.bk-checkbox input { display: none; }

.bk-check-mark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s;
    margin-top: 1px;
}

.bk-checkbox input:checked + .bk-check-mark {
    background: var(--gold);
    border-color: var(--gold);
}

.bk-checkbox input:checked + .bk-check-mark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: var(--navy);
    font-size: 12px;
}

/* Navigation Buttons */
.bk-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.bk-btn-next, .bk-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.bk-btn-next:hover, .bk-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

.bk-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: transparent;
    color: var(--gray-500);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.bk-btn-back:hover { border-color: var(--gray-300); color: var(--gray-700); }

.bk-btn-submit {
    padding: 18px 36px;
    font-size: 17px;
}

.bk-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 20px;
    line-height: 1.6;
}

.bk-disclaimer a { color: var(--gold-dark); font-weight: 600; }

/* Sidebar */
.bk-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.bk-sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.bk-sidebar-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bk-sidebar-card h4 i { color: var(--gold); }

/* Clinic Card */
.bk-clinic-card { border-top: 4px solid var(--gold); }

.bk-clinic-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.bk-clinic-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bk-clinic-icon i { color: var(--gold); font-size: 20px; }

.bk-clinic-header h3 { font-size: 18px; font-weight: 800; color: var(--gray-900); }

.bk-clinic-sub { font-size: 13px; color: var(--gray-500); }

.bk-clinic-info { margin-bottom: 20px; }

.bk-clinic-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-700);
}

.bk-clinic-row:not(:last-child) { border-bottom: 1px solid var(--gray-100); }

.bk-clinic-row i { color: var(--gold); width: 16px; margin-top: 3px; flex-shrink: 0; }

.bk-clinic-row a { color: var(--gray-700); }

.bk-clinic-row a:hover { color: var(--gold-dark); }

.bk-clinic-hours h4 {
    font-size: 14px;
    margin-bottom: 12px;
}

.bk-hours-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    font-size: 14px;
}

.bk-hours-grid span:nth-child(odd) { color: var(--gray-700); font-weight: 500; }

.bk-hours-grid span:nth-child(even) { color: var(--gray-900); font-weight: 600; text-align: right; }

.bk-closed { color: var(--gray-500) !important; }

/* Checklist */
.bk-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bk-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.4;
}

.bk-checklist i { color: var(--teal); font-size: 12px; margin-top: 4px; flex-shrink: 0; }

/* Why Choose */
.bk-why-list { display: flex; flex-direction: column; gap: 16px; }

.bk-why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.bk-why-icon {
    width: 40px;
    height: 40px;
    background: rgba(201,168,76,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bk-why-icon i { color: var(--gold-dark); font-size: 16px; }

.bk-why-item strong { display: block; font-size: 14px; color: var(--gray-900); margin-bottom: 2px; }

.bk-why-item p { font-size: 13px; color: var(--gray-500); margin: 0; }

/* Emergency Card */
.bk-emergency {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(239,68,68,0.04);
    border-color: rgba(239,68,68,0.15);
}

.bk-emergency > i { color: #EF4444; font-size: 20px; margin-top: 2px; flex-shrink: 0; }

.bk-emergency strong { display: block; font-size: 15px; color: var(--gray-900); margin-bottom: 4px; }

.bk-emergency p { font-size: 13px; color: var(--gray-500); margin: 0 0 10px; }

.bk-emergency-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #EF4444;
    color: var(--white) !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.bk-emergency-call:hover { background: #DC2626; }

/* Old appointment styles - keep for compatibility */
.appt-container {
    max-width: 800px;
    margin: 0 auto;
}

.appt-form-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.appt-form-card h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.appt-form-card > p {
    color: var(--gray-500);
    margin-bottom: 32px;
}

.appt-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 28px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.appt-section-title:first-of-type {
    margin-top: 0;
}

.appt-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.appt-form .form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.appt-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.appt-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.appt-form label .required {
    color: #EF4444;
}

.appt-form input,
.appt-form select,
.appt-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: var(--gray-900);
    background: var(--off-white);
    transition: var(--transition);
}

.appt-form input:focus,
.appt-form select:focus,
.appt-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.appt-form textarea {
    min-height: 120px;
    resize: vertical;
}

.appt-form button[type="submit"] {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    margin-top: 16px;
}

.appt-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.appt-info-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.appt-info-item {
    text-align: center;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.appt-info-item i {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 12px;
}

.appt-info-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.appt-info-item p {
    font-size: 13px;
    color: var(--gray-500);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        max-width: 500px;
        margin: 50px auto 0;
    }

    .services-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid,
    .about-intro,
    .service-detail,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail:nth-child(even) {
        direction: ltr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .assessment-process {
        grid-template-columns: repeat(2, 1fr);
    }

    .pain-conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-advantage {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-header h2 {
        font-size: 34px;
    }

    .opt-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .opt-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .assess-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .tx-grid {
        grid-template-columns: 1fr;
    }

    .appt-info-strip {
        grid-template-columns: 1fr 1fr;
    }

    .bk-layout {
        grid-template-columns: 1fr 320px;
        gap: 30px;
    }

    .bk-step span { display: none; }

    .bk-step-line { width: 24px; }

    .bk-body-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        z-index: 1000;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        font-size: 20px;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .hero-stat .number {
        font-size: 28px;
    }

    .services-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .assessment-process {
        grid-template-columns: 1fr;
    }

    .pain-conditions-grid {
        grid-template-columns: 1fr;
    }

    .ai-advantage {
        grid-template-columns: repeat(2, 1fr);
        padding: 32px 20px;
    }

    .ai-advantage-number {
        font-size: 32px;
    }

    .pain-conditions-header h3 {
        font-size: 22px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .page-hero {
        padding: 130px 0 60px;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .wizard-box {
        padding: 28px 20px;
    }

    .opt-grid,
    .opt-grid-3,
    .opt-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .opt-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .check-grid {
        grid-template-columns: 1fr;
    }

    .severity-row {
        flex-wrap: wrap;
        max-width: 300px;
    }

    .sev-btn {
        width: 44px;
        height: 44px;
    }

    .assess-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .tx-grid {
        grid-template-columns: 1fr;
    }

    .result-card {
        padding: 24px 20px;
    }

    .appt-form-card {
        padding: 28px 20px;
    }

    .appt-form .form-row,
    .appt-form .form-row-3 {
        grid-template-columns: 1fr;
    }

    .appt-info-strip {
        grid-template-columns: 1fr;
    }

    .wiz-line {
        width: 30px;
    }

    /* Booking responsive */
    .bk-hero { padding: 130px 0 60px; }
    .bk-hero h1 { font-size: 32px; }
    .bk-hero p { font-size: 16px; }

    .bk-layout {
        grid-template-columns: 1fr;
    }

    .bk-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .bk-sidebar-card.bk-clinic-card {
        grid-column: 1 / -1;
    }

    .bk-progress { padding: 16px; gap: 0; }

    .bk-step span { display: none; }

    .bk-step-line { width: 20px; margin: 0 8px; }

    .bk-panel { padding: 28px 20px; }

    .bk-panel-header { flex-direction: column; align-items: flex-start; }

    .bk-field-row,
    .bk-field-row-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bk-body-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bk-pain-btns { flex-wrap: wrap; }

    .bk-pain-btn { min-width: 40px; padding: 10px 0; }

    .bk-duration-opts { grid-template-columns: 1fr 1fr; }

    .bk-nav { flex-direction: column-reverse; gap: 12px; }

    .bk-btn-next, .bk-btn-submit, .bk-btn-back { width: 100%; justify-content: center; }

    .bk-section { padding: 40px 0 60px; }
}

@media (max-width: 480px) {
    .bk-body-grid { grid-template-columns: repeat(2, 1fr); }

    .bk-sidebar { grid-template-columns: 1fr; }

    .bk-duration-opts { grid-template-columns: 1fr; }

    .bk-pain-btns { gap: 4px; }

    .bk-pain-btn { font-size: 13px; }
}
