/*
  Location New page template styles
  Template: location-new.php
*/

/* Base wrapper for the new location template */
:root {
    --ln-blue: #294B9B;
    --ln-blue-dark: #153173;
    --ln-bg-soft: #E9EEF9;
    --ln-font-head: 'helvetica';
    --ln-font-regular: 'montserratregular';
    --ln-font-bold: 'montserratbold';
    --ln-h2-xl: 54px;
    --ln-h2-lg: 44px;
    --ln-h3-lg: 34px;
    --ln-body: 16px;
    --ln-body-lh: 26px;
    --ln-body-lg: 18px;
    --ln-body-lg-lh: 34px; /* matches general.css p line-height */
}

.location-new-page {
    width: 100%;
    overflow: hidden;
}

/* Typography normalization:
   general.css adds padding-bottom to headings/paragraphs.
   For the new layout we control spacing via margins per section. */
.location-new-page h1,
.location-new-page h2,
.location-new-page h3,
.location-new-page p {
    padding: 0;
}

/* Shared typography (avoid duplicating the same font sizes across sections) */
.location-new-office__title,
.location-new-why__title,
.location-new-directions__title,
.location-new-providers__title,
.location-new-prep__card-title {
    font-family: var(--ln-font-head);
    font-size: var(--ln-h2-lg);
    line-height: 1.1;
    margin: 0;
		padding: 0;
}

.location-new-services__title,
.location-new-prep__title,
.location-new-faq__title {
    font-family: var(--ln-font-head);
    font-size: var(--ln-h2-xl);
    line-height: 1.1;
    margin: 0;
		padding: 0;
}

.location-new-benefits__title,
.location-new-services__card-title,
.location-new-providers__subtitle {
    font-family: var(--ln-font-head);
    font-size: var(--ln-h3-lg);
    line-height: 1.1;
    margin: 0;
    padding: 0;
}

.location-new-benefits__text,
.location-new-why__text,
.location-new-directions__text,
.location-new-services__subtitle,
.location-new-faq__a {
    font-size: var(--ln-body);
    line-height: var(--ln-body-lh);
}

@media screen and (max-width: 991px) {
    /* h2-lg group -> 34px */
    .location-new-office__title,
    .location-new-why__title,
    .location-new-directions__title,
    .location-new-providers__title {
        font-size: 34px;
    }
}

@media screen and (max-width: 640px) {
    /* most big titles collapse to 30px on mobile in the new design */
    .location-new-why__title,
    .location-new-directions__title,
    .location-new-services__title,
    .location-new-prep__title,
    .location-new-faq__title {
        font-size: 30px;
    }
}

/* Section: Top banner */
.location-new-top-banner {
    position: relative; /* keep non-empty for lint; section styles scoped below */
}

.location-new-top-banner h1 {
    line-height: 1.05;
}

.location-new-top-banner .location-new-top-banner__subtitle {
    max-width: 560px;
    margin: 10px 0 0;
    font-size: var(--ln-body-lg);
    line-height: var(--ln-body-lg-lh);
}

.location-new-top-banner .location-new-top-banner__cta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px 30px;
    margin-top: 36px;
    flex-direction: column; /* buttons + hours in one column */
    align-items: flex-start;
}

.location-new-top-banner .location-new-top-banner__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.location-new-top-banner .location-new-top-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 16px 44px;
    border-radius: 9999px;
    background: #294B9B;
    color: #fff;
    text-decoration: none;
    font-family: 'montserratbold';
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    box-shadow: none;
    transition: 0.15s;
}

.location-new-top-banner .location-new-top-banner__btn:hover {
    background: #153173;
    color: #fff;
    text-decoration: none;
}

.location-new-top-banner .location-new-top-banner__hours {
    font-family: 'montserratbold';
    color: #294B9B;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
    width: 100%;
}

.location-new-top-banner .location-new-top-banner__hours-label {
    font-size: 16px;
}

.location-new-top-banner .location-new-top-banner__hours-time {
    font-size: 16px;
    margin-top: 6px;
}

@media screen and (max-width: 640px) {
    .location-new-top-banner .location-new-top-banner__cta-row {
        margin-top: 22px;
    }

    .location-new-top-banner .location-new-top-banner__btn {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Section: Long Beach Office (info card) */
.location-new-office {
    position: relative;
    padding: 0;
}

.location-new-office .container {
    position: relative;
    z-index: 1;
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Placeholder background photo */
.location-new-office__bg {
    position: absolute;
    inset: 0;
    background-image: url(/wp-content/uploads/2026/01/long-beach-office-img.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.location-new-office__card {
    background: #fff;
		max-width: 710px;
    margin-left: auto;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.location-new-office__title {
    color: var(--ln-blue);
    margin: 0 0 56px 0; /* big spacing like design */
}

.location-new-office__content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.location-new-office__col {
    flex: 1 1 0;
    min-width: 260px;
}

.location-new-office__label {
    font-family: 'montserratbold';
    color: #294B9B;
    font-size: 16px;
    padding-bottom: 10px;
}

.location-new-office__text {
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 16px;
}

.location-new-office__meta {
    display: flex;
    gap: 14px;
    align-items: baseline;
    padding-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
}

.location-new-office__meta-label {
    font-family: 'montserratbold';
    color: #294B9B;
    min-width: 48px;
}

.location-new-office__meta-link,
.location-new-office__meta-link:hover {
    text-decoration: none;
    color: inherit;
}

.location-new-office__hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-new-office__hours li {
    display: flex;
    justify-content: flex-start;
    gap: 34px;
    padding-bottom: 18px;
    font-size: 16px;
    line-height: 24px;
}

.location-new-office__hours-day {
    min-width: 140px;
}

.location-new-office__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 64px;
}

.location-new-office__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 14px 44px;
    border-radius: 9999px;
    font-family: 'montserratbold';
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.15s;
    min-width: 260px;
}

.location-new-office__btn--outline {
    border: 2px solid #294B9B;
    color: #294B9B;
    background: transparent;
}

.location-new-office__btn--outline:hover {
    background: #294B9B;
    color: #fff;
    text-decoration: none;
}

.location-new-office__btn--primary {
    border: 2px solid #294B9B;
    background: #294B9B;
    color: #fff;
}

.location-new-office__btn--primary:hover {
    background: #153173;
    border-color: #153173;
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 991px) {
    .location-new-office .container {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .location-new-office__card {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 44px 30px;
    }

    .location-new-office__title { margin-bottom: 28px; }

    .location-new-office__content {
        gap: 40px;
    }
}

@media screen and (max-width: 640px) {
    .location-new-office__content {
        flex-direction: column;
        gap: 28px;
    }

    .location-new-office__actions {
        gap: 12px;
        margin-top: 34px;
    }

    .location-new-office__btn {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        min-width: 0;
    }
}

/* Section: Key benefits (3 cards) */
.location-new-benefits {
    background: #fff;
    padding: 70px 0;
}

.location-new-benefits__row {
    row-gap: 28px;
}

.location-new-benefits__card {
    background: #fff;
    height: 100%;
    min-height: 180px;
    padding: 38px 40px;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.10);
}

.location-new-benefits__title {
    margin: 0 0 18px 0;
    color: #000;
}

.location-new-benefits__text {
    padding: 0;
    margin: 0;
    color: #000;
}

@media screen and (max-width: 991px) {
    .location-new-benefits {
        padding: 50px 0;
    }

    .location-new-benefits__card {
        padding: 30px 26px;
    }

    .location-new-benefits__title {
        font-size: 30px;
    }
}

@media screen and (max-width: 640px) {
    .location-new-benefits {
        padding: 40px 0;
    }

    .location-new-benefits__title {
        font-size: 28px;
    }
}

/* Section: Why Long Beach Patients Choose... */
.location-new-why {
    background: rgba(43, 75, 155, 0.12);
    padding: 70px 0;
}

.location-new-why__content {
    max-width: 560px;
}

.location-new-why__title {
    color: var(--ln-blue);
    margin: 0 0 26px 0;
}

.location-new-why__text {
    padding: 0;
    margin: 0;
    color: #000;
}

.location-new-why__image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-image: url(/wp-content/uploads/2026/01/medical-group-img.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 991px) {
    .location-new-why {
        padding: 50px 0;
    }

    .location-new-why__content {
        max-width: 100%;
        margin-bottom: 28px;
    }

    .location-new-why__title {
        margin-bottom: 18px;
    }

    .location-new-why__image {
        min-height: 240px;
    }
}

@media screen and (max-width: 640px) {
    .location-new-why {
        padding: 40px 0;
    }

    /* mobile reverse: image on top, text below */
    .location-new-why .row {
        flex-direction: column-reverse;
    }

    .location-new-why__content {
        margin-bottom: 0;
        margin-top: 22px;
    }
}

/* Section: Directions & Parking / Areas Served */
.location-new-directions {
    background: #fff;
    padding: 70px 0;
}

.location-new-directions__map {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f2f2f2;
}

.location-new-directions__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.location-new-directions__content {
    padding-left: 30px;
}

.location-new-directions__title {
    color: #000;
    margin: 0 0 18px 0;
}

.location-new-directions__text {
    padding: 0;
    margin: 0 0 42px 0;
    color: #000;
}

.location-new-directions__text:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    .location-new-directions {
        padding: 50px 0;
    }

    .location-new-directions__content {
        padding-left: 0;
        margin-top: 26px;
    }

    /* font-size handled by shared typography */
}

@media screen and (max-width: 640px) {
    .location-new-directions {
        padding: 40px 0;
    }

    .location-new-directions__map {
        aspect-ratio: 4 / 3;
    }

    .location-new-directions__text {
        margin-bottom: 28px;
    }
}

/* Section: Our Eye Care Services */
.location-new-services {
    position: relative;
    padding: 70px 0 80px;
    background-image: url(/wp-content/uploads/2026/01/medical-group-img2.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.location-new-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(24, 50, 111, 0.72);
}

.location-new-services .container {
    position: relative;
    z-index: 1;
}

.location-new-services__header {
    max-width: 1180px;
    margin-bottom: 34px;
}

.location-new-services__title {
    color: #fff;
    margin: 0 0 18px 0;
}

.location-new-services__subtitle {
    padding: 0;
    margin: 0;
    color: #fff;
    max-width: 1180px;
}

.location-new-services__cards {
    row-gap: 26px;
}

.location-new-services__card {
    background: #fff;
    height: 100%;
    padding: 34px 36px;
}

.location-new-services__card-title {
    margin: 0 0 22px 0;
    color: #000;
}

.location-new-services__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-new-services__list li + li {
    margin-top: 14px;
}

.location-new-services__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    line-height: 24px;
}

.location-new-services__link:hover {
    text-decoration: none;
    color: #294B9B;
}

.location-new-services__arrow {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #294B9B;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.location-new-services__arrow svg {
    display: block;
}

@media screen and (max-width: 991px) {
    .location-new-services {
        padding: 50px 0 60px;
    }

    .location-new-services__title { font-size: 38px; }
}

@media screen and (max-width: 640px) {
    .location-new-services {
        padding: 40px 0 50px;
    }

    .location-new-services__card {
        padding: 26px 22px;
    }

    .location-new-services__card-title {
        font-size: 28px;
    }
}

/* Section: Providers (Long Beach) */
.location-new-providers {
    background: #fff;
    padding: 80px 0;
}

.location-new-providers__title {
    color: #000;
    margin: 0 0 12px 0;
}

.location-new-providers__subtitle {
    line-height: 1.2;
    color: #000;
    margin-bottom: 46px;
}

.location-new-providers__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 34px;
}

.location-new-providers__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 26px;
    border-radius: 9999px;
    background: #294B9B;
    color: #fff;
    text-decoration: none;
    font-family: 'montserratbold';
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: 0.15s;
}

.location-new-providers__pill:hover {
    background: #153173;
    color: #fff;
    text-decoration: none;
}

.location-new-providers__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 14px 44px;
    border-radius: 9999px;
    border: 2px solid #294B9B;
    color: #294B9B;
    background: transparent;
    font-family: 'montserratbold';
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.15s;
}

.location-new-providers__cta:hover {
    background: #294B9B;
    color: #fff;
    text-decoration: none;
}

.location-new-providers__media {
    max-width: 420px;
    margin-left: auto;
}

.location-new-providers__photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-image: url(/wp-content/uploads/2026/01/jennifer-helen-le-img.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.location-new-providers__name {
    display: inline-block;
    margin-top: 18px;
    color: #000;
    text-decoration: underline;
    font-size: 20px;
    line-height: 28px;
}

.location-new-providers__name:hover {
    text-decoration: none;
    color: #000;
}

@media screen and (max-width: 991px) {
    .location-new-providers {
        padding: 60px 0;
    }

    .location-new-providers__subtitle {
        font-size: 28px;
        margin-bottom: 30px;
    }

    /* stack with image on top */
    .location-new-providers .row {
        flex-direction: column-reverse;
    }

    .location-new-providers__media {
        max-width: 520px;
        margin: 0 auto 26px;
    }
}

@media screen and (max-width: 640px) {
    .location-new-providers {
        padding: 50px 0;
    }

    .location-new-providers__pills {
        gap: 12px;
    }

    .location-new-providers__pill {
        width: 100%;
        justify-content: center;
        padding-left: 18px;
        padding-right: 18px;
    }

    .location-new-providers__cta {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Section: What to bring / Prefer another office */
.location-new-prep {
    background: #294B9B;
    padding: 80px 0;
}

.location-new-prep__row {
    align-items: center;
    row-gap: 28px;
}

.location-new-prep__card {
    background: #fff;
    padding: 52px 56px;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.location-new-prep__card-title {
    color: #000;
    margin: 0 0 22px 0;
}

.location-new-prep__list {
    margin: 0;
    padding: 0 0 0 22px;
}

.location-new-prep__list li {
    font-size: 18px;
    line-height: 30px;
    margin: 0 0 12px 0;
}

.location-new-prep__list li:last-child {
    margin-bottom: 0;
}

.location-new-prep__content {
    text-align: center;
}

.location-new-prep__title {
    color: #fff;
    margin: 0 0 26px 0;
}

.location-new-prep__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.location-new-prep__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 14px 44px;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff;
    background: transparent;
    font-family: 'montserratbold';
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.15s;
    min-width: 260px;
}

.location-new-prep__btn:hover {
    background: #fff;
    color: #294B9B;
    text-decoration: none;
}

@media screen and (max-width: 991px) {
    .location-new-prep {
        padding: 60px 0;
    }

    .location-new-prep__content {
        text-align: left;
    }

    .location-new-prep__title {
        font-size: 40px;
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 640px) {
    .location-new-prep {
        padding: 50px 0;
    }

    .location-new-prep__card {
        padding: 34px 26px;
    }

    .location-new-prep__card-title {
        font-size: 34px;
    }

    .location-new-prep__title {
        text-align: left;
    }

    .location-new-prep__actions {
        justify-content: flex-start;
        gap: 12px;
    }

    .location-new-prep__btn {
        width: 100%;
        min-width: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Section: FAQs */
.location-new-faq {
    background: #E9EEF9;
    padding: 80px 0;
}

.location-new-faq__title {
    color: #000;
    margin: 0 0 44px 0;
}

.location-new-faq__item {
    padding: 22px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.45);
}

.location-new-faq__item:first-of-type {
    border-top: 1px solid rgba(0, 0, 0, 0.45);
}

.location-new-faq__q {
    font-family: 'montserratbold';
    font-size: 18px;
    line-height: 28px;
    padding: 0;
    margin: 0 0 10px 0;
    color: #000;
}

.location-new-faq__a {
    padding: 0;
    margin: 0;
    color: #000;
}

@media screen and (max-width: 991px) {
    .location-new-faq {
        padding: 60px 0;
    }

    .location-new-faq__title {
        font-size: 40px;
        margin-bottom: 28px;
    }
}

@media screen and (max-width: 640px) {
    .location-new-faq {
        padding: 50px 0;
    }

    .location-new-faq__title {
        margin-bottom: 22px;
    }

    .location-new-faq__item {
        padding: 18px 0;
    }
}

/*
  IMPORTANT:
  Add all new section styles by targeting your section class first, e.g.:
  .location-new-hero { ... }
  .location-new-hero h1 { ... }
*/


