/* Lakeside Spine & Injury - Main Stylesheet */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header/Navigation */
.top-banner {
    background: #1e293b;
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.top-banner a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
}

nav {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

.logo img {
    height: 100%;
    width: auto;
}

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

.nav-links a {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1e293b;
}

.nav-cta {
    background: #fbbf24;
    color: #1e293b;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(51, 65, 85, 0.75) 100%),
                url('https://storage.googleapis.com/msgsndr/mfFZvTEAvd47LLAYTUWc/media/68152f8a00131974a20400b8.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-primary {
    background: #fbbf24;
    color: #1e293b;
    padding: 18px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
    background: white;
    color: #1e293b;
    padding: 18px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.badge {
    text-align: center;
}

.badge-number {
    font-size: 36px;
    font-weight: 800;
    color: #fbbf24;
}

.badge-text {
    font-size: 14px;
    opacity: 0.9;
}

/* Social Proof Section */
.social-proof {
    background: #f8fafc;
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 50px;
}

.stars {
    font-size: 32px;
    color: #fbbf24;
    margin-bottom: 10px;
}

.review-summary {
    font-size: 24px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 50px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: left;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: #1e293b;
}

/* Why Different Section */
.why-different {
    padding: 80px 0;
    background: white;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

/* Conditions Section */
.conditions {
    background: #f8fafc;
    padding: 80px 0;
}

.condition-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.condition-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.condition-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(51, 65, 85, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.condition-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(51, 65, 85, 0.85) 100%);
    z-index: 1;
}

.condition-image svg,
.condition-image img {
    position: relative;
    z-index: 2;
}

.condition-content {
    padding: 25px;
}

.condition-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.condition-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* Meet Dr. Allen Section */
.meet-doctor {
    padding: 80px 0;
    background: white;
}

.doctor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.doctor-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

.doctor-text h3 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.doctor-text p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

.credentials {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.credential {
    background: #fef3c7;
    color: #1e293b;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* How It Works */
.how-it-works {
    background: #1e293b;
    color: white;
    padding: 80px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
    color: #1e293b;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-items {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 25px;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-answer {
    padding: 0 25px 25px;
    color: #475569;
    line-height: 1.7;
    display: none;
}

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

.faq-toggle {
    font-size: 24px;
    color: #fbbf24;
}

/* New FAQ Navigation Style */
.faq-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 50px 0 40px;
    flex-wrap: wrap;
}

.faq-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: white;
    color: #64748b;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-nav-btn:hover {
    border-color: #fbbf24;
    color: #1e293b;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.faq-nav-btn.active {
    background: #fbbf24;
    border-color: #fbbf24;
    color: #1e293b;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.faq-display {
    max-width: 900px;
    margin: 0 auto;
    min-height: 400px;
    position: relative;
}

.faq-card {
    display: none;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    animation: fadeIn 0.5s ease-in-out;
}

.faq-card.active {
    display: block;
}

.faq-big-question {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 30px;
    line-height: 1.3;
}

.faq-big-answer {
    font-size: 20px;
    color: #475569;
    line-height: 1.8;
}

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

/* Final CTA Section */
.final-cta {
    background: #1e293b;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.contact-info {
    font-size: 18px;
    margin-top: 30px;
}

.contact-info a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 700;
}

/* Footer */
footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fbbf24;
}

.footer-section p,
.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.7;
}

.footer-section a:hover {
    color: #fbbf24;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #cbd5e1;
}

/* Icon Styles */
.icon {
    width: 48px;
    height: 48px;
    display: inline-block;
    margin: 0 auto 20px;
}

.icon-small {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.icon-condition {
    width: 80px;
    height: 80px;
}

/* Page Header (for subpages) */
.page-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: white;
}

.content-section.alt {
    background: #f8fafc;
}

/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    margin-top: 20px;
}

.service-card ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #475569;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: 700;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.blog-card-content {
    padding: 30px;
}

.blog-card-date {
    font-size: 14px;
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.blog-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card .read-more {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.blog-card .read-more:hover {
    color: #f59e0b;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .section-title {
        font-size: 32px;
    }

    .doctor-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .steps,
    .features,
    .condition-cards,
    .service-cards,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .final-cta h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    /* FAQ Mobile Styles */
    .faq-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .faq-card {
        padding: 30px 20px;
    }

    .faq-big-question {
        font-size: 28px;
    }

    .faq-big-answer {
        font-size: 17px;
    }
}
