/* Braces Landing Page Styles
---------------------------------------------------------- */

/* Hide banner - hero has its own background */
.bannerarea {
    display: none !important;
}

/* Landing Hero Section */
.landing-hero {
    background-color: #D8ECF6;
    padding: 60px 40px 0;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.landing-hero-inner {
    width: min(100%, 1400px);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    min-height: 600px;
    padding-bottom: 20px;
}

.landing-hero-left {
    width: 35%;
    padding-top: 20px;
    position: relative;
    z-index: 3;
}

.landing-hero-left h1 {
    font-family: var(--font-family-main);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    color: var(--black);
    margin: 0 0 20px;
}

.landing-hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--black);
    margin: 0 0 30px;
}

.landing-hero-review {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    max-width: 260px;
}

.landing-hero-review-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.landing-hero-review-top .google-icon {
    width: 24px;
    height: 24px;
}

.landing-hero-review-top .review-rating {
    font-weight: bold;
    font-size: 1.1rem;
}

.landing-hero-review-top .review-stars {
    color: #fbbc04;
    font-size: 1.1rem;
}

.landing-hero-review .review-count {
    font-size: 0.8rem;
    color: #666;
    margin: 0 0 10px;
}

.landing-hero-review .review-quote {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 8px;
    color: var(--black);
}

.landing-hero-review .review-author {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

.landing-hero-center {
    position: absolute;
    bottom: -40px;
    left: 15%;
    width: 65%;
    pointer-events: none;
    z-index: 2;
}

.landing-hero-center img {
    width: 100%;
    display: block;
}

.landing-hero-right {
    width: 38%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
    position: relative;
    z-index: 3;
}

.landing-hero-offer {
    background: var(--secondary-color, #1a6b8a);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.offer-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offer-text {
    display: flex;
    flex-direction: column;
}

.offer-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.offer-amount {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
}

.offer-amount small {
    font-size: 1.2rem;
    font-weight: 700;
}

.offer-desc {
    font-size: 0.85rem;
    font-weight: 600;
}

.offer-disclaimer {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-top: 4px;
    line-height: 1.4;
}

.landing-hero-form {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.landing-hero-form h2 {
    font-family: var(--font-family-main);
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    margin: 0 0 4px;
    color: var(--black);
}

.landing-hero-form > p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 20px;
}

.landing-hero-form-holder {
    width: 100%;
}

/* Features bar */
.landing-hero-features {
    width: min(100%, 1400px);
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.landing-hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.landing-hero-feature span {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
}

/* Landing Hero Responsive */
@media (max-width: 1025px) {
    .landing-hero-inner {
        min-height: 500px;
    }
    .landing-hero-left {
        width: 40%;
    }
    .landing-hero-right {
        width: 42%;
    }
    .landing-hero-center {
        transform: translateX(-55%);
    }
    .landing-hero-center img {
        height: 460px;
    }
}

@media (max-width: 768px) {
    .landing-hero {
        padding: 40px 20px 0;
    }
    .landing-hero-inner {
        flex-direction: column;
        align-items: center;
        min-height: auto;
        padding-bottom: 0;
    }
    .landing-hero-left,
    .landing-hero-right {
        width: 100%;
    }
    .landing-hero-left {
        text-align: center;
    }
    .landing-hero-review {
        margin: 0 auto 20px;
    }
    .landing-hero-center {
        position: relative;
        left: auto;
        transform: none;
        width: 100%;
        justify-content: center;
        order: 3;
    }
    .landing-hero-center img {
        height: auto;
        max-height: 350px;
        width: 80%;
        max-width: 320px;
    }
    .landing-hero-features {
        gap: 20px;
        flex-wrap: wrap;
    }
    .landing-hero-feature {
        width: 45%;
    }
}

/* meet_the_staff_2 image fit */
.meet_the_staff_2.doctor .meet-staff-left {
    height: min(38vw, 500px);
    width: min(38%, 550px);
    border-radius: 15px;
    box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.meet_the_staff_2.doctor .meet-staff-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

@media (max-width: 1025px) {
    .meet_the_staff_2.doctor .meet-staff-left {
        width: min(100%, 550px);
        height: min(62vw, 500px);
    }
}

/* meet_the_staff_5 image fit */
.meet_the_staff_5 .meet-staff-left {
    height: min(32vw, 420px);
    width: min(35%, 470px);
    border-radius: 15px;
    box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.meet_the_staff_5 .meet-staff-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

@media (max-width: 1025px) {
    .meet_the_staff_5 .meet-staff-left {
        width: min(100%, 470px);
        height: min(55vw, 420px);
    }
}

/* braces-pros-cons */
.braces-pros-cons {
    padding: 100px 25px;
    position: relative;
    z-index: 1;
}

.braces-pros-cons-container {
    width: min(100%, 1500px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.braces-pros-cons-title h2 {
    font-family: var(--font-family-main);
    font-size: var(--h1-font-size);
    font-style: normal;
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--heading-letter-spacing-normal);
    text-transform: var(--heading-text-transform-normal);
    color: var(--black);
    margin: 0;
    text-align: center;
}

.braces-pros-cons-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.braces-pros-cons-card {
    width: min(100%, 550px);
    padding: 30px;
    border-radius: 15px;
    background-color: var(--white, #fff);
    box-shadow: 4px 4px 15px 0 rgba(0, 0, 0, 0.1);
}

.braces-pros-cons-card h4 {
    font-family: var(--font-family-main);
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    margin: 0 0 20px;
    text-align: center;
}

.braces-pros-cons-card.pros h4 {
    color: var(--secondary-color);
}

.braces-pros-cons-card.cons h4 {
    color: var(--black);
}

.braces-pros-cons-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.braces-pros-cons-card ul li {
    padding: 14px 16px;
    background-color: var(--tertiary-color, #f7f7f7);
    border-radius: 8px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.braces-pros-cons-card ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .braces-pros-cons-cards {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .braces-pros-cons {
        padding: 50px 25px;
    }
}


/* braces-faq */
.braces-faq {
    padding: 100px 25px;
    position: relative;
    z-index: 1;
    background-color: var(--tertiary-color);
}

.braces-faq-container {
    width: min(100%, 1100px);
    margin: 0 auto;
}

.braces-faq-container h2 {
    font-family: var(--font-family-main);
    font-size: var(--h1-font-size);
    font-style: normal;
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--heading-letter-spacing-normal);
    text-transform: var(--heading-text-transform-normal);
    color: var(--black);
    margin: 0 0 40px;
    text-align: center;
}

@media (max-width: 600px) {
    .braces-faq {
        padding: 50px 25px;
    }
}
