@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #1B2A4A;
    --navy-dark: #152238;
    --teal: #2BB5B2;
    --teal-dark: #239E9B;
    --teal-light: #E8F7F7;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #F0F2F5;
    --border-gray: #E2E5EA;
    --text-dark: #1B2A4A;
    --text-body: #4A5568;
    --text-muted: #718096;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

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

/* ========== BUTTONS ========== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--teal);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: transparent;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.section-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-title span {
    color: var(--teal);
}

.section-padding {
    padding: 80px 0;
}

/* ========== HEADER / NAVBAR ========== */

.site-header {
    background: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.header-logo img {
    height: 50px;
    width: auto;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--teal);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    transition: var(--transition);
}

.header-phone:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}

.header-phone svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ========== HERO SECTION ========== */

.hero-section {
    background: var(--navy);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -8%;
    bottom: 0;
    left: 0;
    background: var(--navy) url('./lp-images/wisdom-banner-bg.png') 90% center/cover no-repeat;
    /* background-blend-mode: soft-light; */
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 65%;
    background: linear-gradient(to right, var(--navy) 60%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-content .section-label {
    color: var(--teal);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-content h1 span {
    color: var(--teal);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 600px;
}

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

.hero-buttons .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.hero-buttons .btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.hero-trust-badges {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 500;
}

.hero-trust-badges .badge svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
    flex-shrink: 0;
}

/* ========== TRUST BAR ========== */

.trust-bar {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-gray);
}

.trust-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.trust-item {
    padding: 16px;
    position: relative;
}

.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: var(--border-gray);
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 6px;
}

.trust-number .star {
    color: var(--teal);
}

.trust-label {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========== PAIN POINTS ========== */

.pain-points {
    background: var(--white);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.pain-card {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-left: 4px solid var(--teal);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

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

.pain-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.pain-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

.pain-cta-box {
    margin-top: 48px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
}

.pain-cta-box h3 {
    font-size: 28px;
    margin-bottom: 14px;
}

.pain-cta-box p {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== WHY CHOOSE US ========== */

.why-choose-us {
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
}

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

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--teal-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--teal);
}

.feature-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

/* ========== HOW IT WORKS ========== */

.how-it-works {
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.step-card {
    background: var(--navy);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    color: var(--white);
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.step-card h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* ========== SURGEONS ========== */

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

.surgeons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.surgeon-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 36px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    transition: var(--transition);
}

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

.surgeon-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    border: 3px solid var(--teal-light);
}

.surgeon-info h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.surgeon-info .surgeon-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
    display: block;
}

.surgeon-info p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: #F5A623;
    fill: #F5A623;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-text.expanded {
    display: block;
    -webkit-line-clamp: unset;
    max-height: 150px;
    overflow-y: auto;
    padding-right: 8px;
}

.testimonial-text.expanded::-webkit-scrollbar {
    width: 5px;
}

.testimonial-text.expanded::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

.testimonial-text.expanded::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 10px;
}

.read-more-toggle {
    background: none;
    border: none;
    color: var(--teal);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
    font-family: var(--font-body);
    text-align: left;
    display: block;
}

.read-more-toggle:hover {
    color: var(--teal-dark);
}

.testimonial-author {
    border-top: 1px solid var(--border-gray);
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author-info h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-google {
    width: 24px;
    height: 24px;
    margin-left: auto;
}

/* ========== FAQ ========== */

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    align-items: start;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 22px 28px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--teal);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--teal);
}

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

.faq-answer {
    display: none;
}

.faq-answer-inner {
    padding: 0 28px 22px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ========== INSURANCE ========== */

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

.insurance-box {
    background: var(--off-white);
    border: 1px solid var(--border-gray);
    border-left: 4px solid var(--teal);
    border-radius: var(--radius-md);
    padding: 40px;
}

.insurance-box h3 {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.insurance-box > p {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 28px;
}

.insurance-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.insurance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.insurance-badge svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
}

/* ========== LOCATIONS ========== */

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

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.location-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
}

.location-map {
    width: 100%;
    height: 300px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.location-card h3,
.location-card .location-address,
.location-card .location-hours,
.location-card .location-phone {
    margin-left: 36px;
    margin-right: 36px;
}

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

.location-card h3 {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    padding-top: 24px;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 10px;
    line-height: 1.5;
}

.location-address a {
    color: var(--text-body);
}

.location-address a:hover {
    color: var(--teal);
}

.location-address svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.location-hours svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
    flex-shrink: 0;
}

.location-phone {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--teal);
    padding-bottom: 36px;
    display: inline-block;
}

.location-phone:hover {
    color: var(--teal-dark);
}

/* ========== FINAL CTA ========== */

.final-cta {
    background: var(--navy);
    padding: 70px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta h2 span {
    color: var(--teal);
}

.final-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

.final-cta-buttons .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.final-cta-buttons .btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
}

/* ========== FOOTER ========== */

.site-footer {
    background: var(--navy-dark);
    padding: 24px 0;
}

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

.footer-copy {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-link {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-link:hover {
    color: var(--teal);
}

/* ========== RESPONSIVE ========== */

@media only screen and (max-width: 1536px){
    .hero-section::before {
    right: -15%;
    }
}
@media only screen and (max-width: 1440px){
    .hero-section::before {
    right: -20%;
    }
}

@media only screen and (max-width: 1240px){
    .hero-section::before {
    right: -25%;
    }
}

@media (max-width: 1199px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 36px;
    }

    .hero-content h1 {
        font-size: 40px;
    }
     
    .hero-section::before {
        right: -20%;
        bottom: 0px;
        top: 0;
        left: 0;
        background-position: bottom;
        background-size: contain;
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

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

    .trust-item:nth-child(2)::after {
        display: none;
    }

    .surgeon-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

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

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

    .hero-section {
        padding: 50px 0 60px;
    }

    .hero-section::before {
        width: 100%;
        opacity: 0;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

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

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .trust-bar .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-item::after {
        display: none;
    }

    .trust-number {
        font-size: 36px;
    }

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

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

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

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

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

    .testimonials-grid .testimonial-card:last-child {
        max-width: 100%;
    }

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

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

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

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-buttons .btn-primary,
    .final-cta-buttons .btn-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .site-footer .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .pain-cta-box {
        padding: 28px 20px;
    }

    .pain-cta-box h3 {
        font-size: 24px;
    }

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

    .insurance-badges {
        flex-direction: column;
    }

    .insurance-badge {
        justify-content: center;
    }
}

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

    .trust-bar {
        padding: 30px 0;
    }

    .hero-section {
        padding: 40px 0 50px;
    }

    .final-cta {
        padding: 50px 0;
    }
    .faq-question {
        padding: 15px;
    }

    .trust-item:nth-child(odd)::after {
        display: block;
        height: 60px;
        background: #E2E5EA;
        width: 2px;
    }
    .location-card h3, .location-card .location-address, .location-card .location-hours, .location-card .location-phone {
        margin-left: 24px;
        margin-right: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 30px;
    }

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

    .hero-content h1 {
        font-size: 28px;
    }

    .trust-number {
        font-size: 30px;
    }

    .header-logo img {
        height: 40px;
    }

    .header-phone {
        padding: 10px 18px;
        font-size: 13px;
    }

    .header-phone-number {
        display: none;
    }

    .surgeon-photo {
        width: 100px;
        height: 100px;
    }

    .step-card {
        padding: 28px 24px;
    }
}

@media (max-width: 375.98px) {
    .pain-cta-box .btn-primary {
        width: 100%;
    }
}
