/* ============================================
   BeyondPhysio - Complete Style Sheet
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1a1a2e;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: #0a0f1c;
    color: #ffffff;
    font-size: 0.8rem;
    padding: 0.6rem 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info span i {
    font-size: 0.75rem;
    color: #ff923c;
}

.cart-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.cart-info i {
    color: #ff923c;
}

/* ============================================
   MAIN HEADER & NAVIGATION
   ============================================ */
.site-header {
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1rem 2rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #1a1a2e 0%, #ff923c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #1a1a2e;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff923c;
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu li a:hover::after,
.nav-menu li.active a::after {
    width: 100%;
}

.nav-menu li a:hover {
    color: #ff923c;
}

.nav-menu li.book-btn a {
    background: #ff923c;
    color: white !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 40px;
}

.nav-menu li.book-btn a::after {
    display: none;
}

.nav-menu li.book-btn a:hover {
    background: #e07a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 147, 60, 0.3);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a1a2e;
    padding: 0.3rem;
    margin-left: 1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero, .front-banner {
    padding: 4rem 0;
    position: relative;
    background: linear-gradient(145deg, #fff8f0 0%, #fff3e6 15%, #ffffff 40%, #fefaf5 70%, #ffffff 100%);
    overflow: hidden;
}

.hero .wave-bg, .front-banner .wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,147,60,0.06)" fill-opacity="1" d="M0,192L48,197.3C96,203,192,213,288,208C384,203,480,181,576,181.3C672,181,768,203,864,208C960,213,1056,203,1152,186.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    pointer-events: none;
}

.hero-grid, .front-banner-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-content, .front-banner-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 147, 60, 0.12);
    color: #ff923c;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1, .front-banner-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.hero-content h1 .highlight, .front-banner-content h1 .highlight {
    color: #ff923c;
}

.hero-subtitle, .front-banner-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: #ff923c;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #e07a2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 147, 60, 0.3);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: #ff923c;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #ff923c;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s;
}

.btn-outline:hover {
    background: #ff923c;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.25s;
}

.btn-outline-light:hover {
    background: white;
    color: #ff923c;
}

.btn-primary-small {
    background: #ff923c;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.25s;
}

.btn-primary-small:hover {
    background: #e07a2a;
    transform: translateY(-2px);
}

.btn-outline-small {
    background: transparent;
    color: #ff923c;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #ff923c;
    display: inline-block;
    transition: all 0.25s;
}

.btn-outline-small:hover {
    background: #ff923c;
    color: white;
}

.front-home-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff923c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    transition: all 0.25s ease;
}

.front-home-link:hover {
    background: #e07a2a;
    transform: translateX(-5px);
    box-shadow: 0 8px 20px rgba(255, 147, 60, 0.3);
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #555;
}

.hero-trust i {
    color: #ff923c;
}

/* Slider */
.hero-slider, .front-banner-image {
    flex: 1;
    max-width: 550px;
}

.slider-container {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.slider-track {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 2rem 1rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff923c;
    width: 24px;
    border-radius: 10px;
}

.dot:hover {
    background: #ff923c;
    transform: scale(1.2);
}

.front-image-placeholder {
    background: linear-gradient(135deg, #ffecd6, #ffe0c4);
    border-radius: 30px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.front-image-placeholder i {
    font-size: 8rem;
    color: #ff923c;
}

/* ============================================
   WHO WE HELP SECTION
   ============================================ */
.who-we-help {
    padding: 5rem 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tag {
    display: inline-block;
    background: rgba(255, 147, 60, 0.12);
    color: #ff923c;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.help-card {
    text-align: center;
    padding: 2rem;
    background: #fefaf5;
    border-radius: 20px;
    transition: all 0.3s;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.help-card i {
    font-size: 2.5rem;
    color: #ff923c;
    margin-bottom: 1rem;
}

.help-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.help-card p {
    color: #666;
    font-size: 0.9rem;
}

.help-cta {
    text-align: center;
}

/* ============================================
   CTA BREAK
   ============================================ */
.cta-break {
    background: #ff923c;
    padding: 2rem 0;
    text-align: center;
}

.cta-mini {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* ============================================
   OUR APPROACH SECTION
   ============================================ */
.approach {
    padding: 5rem 0;
    background: #fefaf5;
}

.approach-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 2rem;
    margin: 1rem 0 1rem;
}

.approach-content p {
    color: #555;
    margin-bottom: 1.5rem;
}

.approach-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.approach-content ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.approach-content ul li i {
    color: #ff923c;
    font-size: 1.2rem;
    width: 24px;
}

.approach-image {
    flex: 1;
}

.approach-placeholder {
    background: linear-gradient(135deg, #ffecd6, #ffe0c4);
    border-radius: 30px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-placeholder i {
    font-size: 6rem;
    color: #ff923c;
}

/* ============================================
   TREATMENTS SECTION
   ============================================ */
.treatments {
    padding: 5rem 0;
    background: #ffffff;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.treatment-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 1px solid #eee;
    transition: all 0.3s;
    display: block;
}

.treatment-card:hover {
    border-color: #ff923c;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.treatment-card i {
    font-size: 2.5rem;
    color: #ff923c;
    margin-bottom: 1rem;
}

.treatment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.treatment-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.learn-more {
    color: #ff923c;
    font-weight: 600;
    font-size: 0.9rem;
}

.treatments-cta {
    text-align: center;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 5rem 0;
    background: #fefaf5;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 147, 60, 0.2);
    position: absolute;
    top: 10px;
    right: 20px;
}

.step-icon i {
    font-size: 2.5rem;
    color: #ff923c;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
    font-size: 0.9rem;
}

.step-arrow i {
    font-size: 1.5rem;
    color: #ff923c;
}

.steps-cta {
    text-align: center;
}

/* ============================================
   INSURANCE VS PRIVATE
   ============================================ */
.insurance-private {
    padding: 5rem 0;
    background: #ffffff;
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.split-card {
    padding: 2.5rem;
    border-radius: 24px;
    transition: all 0.3s;
}

.split-card.insurance {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
}

.split-card.private {
    background: linear-gradient(135deg, #1a1a2e, #2a2a4e);
    color: white;
}

.split-badge {
    display: inline-block;
    padding: 0.2rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.split-card.insurance .split-badge {
    background: #e0e0e0;
    color: #333;
}

.split-card.private .split-badge {
    background: #ff923c;
    color: white;
}

.split-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.split-card.private i {
    color: #ff923c;
}

.split-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.split-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.split-card.private p {
    color: rgba(255,255,255,0.8);
}

.split-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.split-card ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.split-card ul li i {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #ff923c;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    padding: 5rem 0;
    background: #fefaf5;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.why-card i {
    font-size: 2.5rem;
    color: #ff923c;
    margin-bottom: 1rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: 5rem 0;
    background: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: #ff923c;
    box-shadow: 0 8px 25px rgba(255,147,60,0.15);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff923c;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff923c;
    margin: 1rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card ul li i {
    color: #ff923c;
    font-size: 0.8rem;
}

/* ============================================
   REHAB PROGRAMS
   ============================================ */
.rehab-programs {
    padding: 5rem 0;
    background: #fefaf5;
}

.rehab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.rehab-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.rehab-card:hover {
    transform: translateY(-5px);
    border-color: #ff923c;
}

.rehab-card .price {
    font-size: 2rem;
    font-weight: 800;
    color: #ff923c;
    margin: 1rem 0;
}

.rehab-note {
    text-align: center;
    padding: 2rem;
    background: #e8f0f5;
    border-radius: 16px;
    color: #1a1a2e;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust {
    padding: 5rem 0;
    background: #fefaf5;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.therapist-card, .location-card, .insurance-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.therapist-img {
    text-align: center;
    margin-bottom: 1.5rem;
}

.therapist-img i {
    font-size: 4rem;
    color: #1a1a2e;
}

.therapist-title {
    color: #ff923c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.therapist-creds {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.therapist-bio {
    font-style: italic;
    color: #666;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.location-card i, .insurance-card i {
    color: #ff923c;
    margin-right: 0.5rem;
}

.location-note {
    margin: 1rem 0;
    color: #666;
    line-height: 1.8;
}

.insurance-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.insurance-logos span {
    background: #f0f0f0;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.insurance-note {
    color: #666;
    font-size: 0.85rem;
    margin: 1rem 0;
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-hero {
    padding: 4rem 0 2rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f6 50%, #ffffff 100%);
    text-align: center;
}

.faq-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.faq-hero-content h1 .highlight {
    color: #ff923c;
}

.faq-hero-content p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.faq-main {
    padding: 3rem 0 5rem 0;
    background: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fefaf5;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0e6dc;
}

.faq-item:hover {
    border-color: #ff923c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #1a1a2e;
    transition: all 0.2s;
}

.faq-question:hover {
    background: rgba(255, 147, 60, 0.05);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    color: #ff923c;
    font-size: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.2rem 1.5rem;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    font-size: 0.9rem;
}

.faq-answer strong {
    color: #ff923c;
}

.faq-cta-wrapper {
    margin-top: 3rem;
}

.faq-cta-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4e 100%);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    color: white;
}

.faq-cta-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.faq-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* ============================================
   FINAL CTA & FOOTER
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4e 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.final-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

.site-footer {
    background: #0a0f1c;
    color: #8899aa;
    padding: 3rem 0 1rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #8899aa;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #ff923c;
}

.footer-col p i {
    margin-right: 8px;
    color: #ff923c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1a2a3a;
    font-size: 0.8rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-content h1, .front-banner-content h1 {
        font-size: 2.5rem;
    }
    .nav-menu {
        gap: 0.8rem;
    }
    .nav-menu li a {
        font-size: 0.7rem;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 110px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 110px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        gap: 1.2rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-menu li a {
        display: block;
        width: 100%;
        font-size: 0.9rem;
    }
    .hero-grid, .front-banner-grid, .approach-grid {
        flex-direction: column;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-trust {
        justify-content: center;
    }
    .hero-slider, .front-banner-image {
        max-width: 100%;
        margin-top: 2rem;
    }
    .approach-content ul li {
        justify-content: center;
    }
    .steps-grid {
        flex-direction: column;
    }
    .step-arrow {
        transform: rotate(90deg);
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .final-cta h2 {
        font-size: 1.8rem;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .top-bar .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
    }
    .site-header .container {
        padding: 0.8rem 1rem;
    }
    .logo-img {
        height: 38px;
    }
    .logo-text {
        font-size: 1.1rem;
    }
    .hero-content h1, .front-banner-content h1 {
        font-size: 2rem;
    }
    .hero-subtitle, .front-banner-text {
        font-size: 1rem;
    }
    .btn-primary, .btn-outline {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    .split-grid, .trust-grid, .help-grid, .treatments-grid, .pricing-grid, .rehab-grid {
        grid-template-columns: 1fr;
    }
    .front-image-placeholder {
        height: 220px;
    }
    .front-image-placeholder i {
        font-size: 4rem;
    }
    .faq-hero-content h1 {
        font-size: 1.8rem;
    }
    .faq-cta-card {
        padding: 2rem 1rem;
    }
    .faq-cta-card h3 {
        font-size: 1.3rem;
    }
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .slider-dots {
        bottom: 10px;
    }
    .dot {
        width: 8px;
        height: 8px;
    }
    .dot.active {
        width: 20px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .help-card, .treatment-card, .step, .split-card, .why-card, .pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}
/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-switcher a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: color 0.2s;
    padding: 0.2rem 0.3rem;
}

.language-switcher a:hover,
.language-switcher a.active {
    color: #ff923c;
}

.language-switcher span {
    color: rgba(255,255,255,0.3);
}

@media (max-width: 600px) {
    .top-bar-right {
        justify-content: center;
        margin-top: 0.3rem;
    }
}