/* ============================================================
   Hero
   ============================================================ */

.loc-hero {
    background: var(--orange-light);
    padding: 2rem 0;
    overflow: hidden;
}

.loc-hero__eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    margin-bottom: 1rem;
}

.loc-hero__heading {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    line-height: 1.15;
}

.loc-hero__sub {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 540px;
    line-height: 1.7;
}

.loc-hero__note {
    font-size: 0.85rem;
    color: var(--gray-muted);
}

.loc-hero__image-wrap {
    position: relative;
    display: inline-block;
}

.loc-hero__portrait {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--blue);
    position: relative;
    z-index: 2;
}

.loc-hero__accent {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.loc-hero__accent--ring {
    width: 350px;
    height: 350px;
    border: 2px dashed var(--blue);
    opacity: 0.25;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loc-hero__accent--dot-orange {
    width: 60px;
    height: 60px;
    background: var(--orange);
    opacity: 0.2;
    top: -10px;
    right: -5px;
}

.loc-hero__accent--dot-blue {
    width: 40px;
    height: 40px;
    background: var(--blue);
    opacity: 0.2;
    bottom: 10px;
    left: -15px;
}

@media (max-width: 991.98px) {
    .loc-hero__portrait {
        width: 240px;
        height: 240px;
    }
    .loc-hero__accent--ring {
        width: 280px;
        height: 280px;
    }
    .loc-hero__accent--dot-orange {
        width: 40px;
        height: 40px;
        top: -5px;
        right: 5px;
    }
    .loc-hero__accent--dot-blue {
        width: 28px;
        height: 28px;
        bottom: 10px;
        left: 0;
    }
}


/* ============================================================
   Stat Bar (matches reviews page stat highlights)
   ============================================================ */

.loc-stats {
    background: var(--white);
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
}

.loc-stats__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 1.75rem 0;
}

.loc-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.loc-stats__number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--blue);
    line-height: 1.1;
}

.loc-stats__label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.loc-stats__divider {
    width: 1px;
    height: 36px;
    background: var(--gray-border);
    flex-shrink: 0;
}

@media (max-width: 575.98px) {
    .loc-stats__row {
        gap: 1.25rem;
        flex-wrap: wrap;
    }
    .loc-stats__number {
        font-size: 1.4rem;
    }
    .loc-stats__label {
        font-size: 0.7rem;
    }
    .loc-stats__divider {
        height: 28px;
    }
}


/* ============================================================
   Schools & Admissions Cards
   ============================================================ */

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

.loc-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.loc-card__stripe {
    width: 5px;
    flex-shrink: 0;
}

.loc-card__stripe--orange {
    background: var(--orange);
}

.loc-card__stripe--blue {
    background: var(--blue);
}

.loc-card__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.loc-card__body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.loc-card__body p {
    color: var(--gray-text);
    font-size: 0.93rem;
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.loc-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: var(--radius);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.loc-card__icon--blue {
    background: var(--blue-light);
    color: var(--blue-dark);
}

.loc-card__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-muted);
    background: var(--gray-bg);
    border: 1px solid var(--gray-border);
    border-radius: 50rem;
    padding: 0.2rem 0.7rem;
    margin-right: 0.35rem;
    margin-bottom: 0.35rem;
}


/* ============================================================
   School Pills (compact, supporting context — not primary)
   ============================================================ */

.loc-school-pill {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.loc-school-pill:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.loc-school-pill__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: var(--radius);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.loc-school-pill__icon--blue {
    background: var(--blue-light);
    color: var(--blue-dark);
}

.loc-school-pill h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.loc-school-pill p {
    color: var(--gray-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}


/* ============================================================
   Subjects Grid
   ============================================================ */

.loc-subjects-section {
    background-color: var(--gray-bg);
    background-image: url('../images/dot-pattern.svg');
    background-repeat: repeat;
}

.loc-subject {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    height: 100%;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.loc-subject__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: var(--radius);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.loc-subject__icon--blue {
    background: var(--blue-light);
    color: var(--blue-dark);
}

.loc-subject h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.loc-subject p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}


/* ============================================================
   In-Person Logistics
   ============================================================ */

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

.loc-logistics-section p {
    color: var(--gray-text);
    font-size: 1.05rem;
    line-height: 1.7;
}

.loc-logistics__details {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.loc-logistics__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-text);
}

.loc-logistics__item i {
    color: var(--blue);
    font-size: 1.15rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

/* Left-align the gradient underline when heading isn't centered */
.loc-logistics-section .section-heading::after,
.loc-local-section .section-heading:not(.text-center)::after {
    margin-left: 0;
    margin-right: auto;
}

.loc-logistics__card {
    background: var(--gray-bg);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.loc-logistics__card-header {
    background: linear-gradient(135deg, var(--orange) 50%, #2db8d2 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 1.5rem;
}

.loc-logistics__card-body {
    padding: 0.5rem 1.5rem;
}

.loc-spot {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--gray-border);
    border-radius: 8px;
    transition: background 0.15s ease, transform 0.15s ease;
}

.loc-spot:last-child {
    border-bottom: none;
}

.loc-spot:hover {
    background: var(--gray-bg);
    transform: translateX(3px);
}

.loc-spot__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: 8px;
    font-size: 1rem;
    transition: transform 0.15s ease;
}

.loc-spot__icon--blue {
    background: var(--blue-light);
    color: var(--blue-dark);
}

.loc-spot:hover .loc-spot__icon {
    transform: scale(1.1);
}

.loc-spot__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.loc-spot__text strong {
    font-size: 0.93rem;
    color: var(--dark);
    white-space: nowrap;
}

.loc-spot__text span {
    font-size: 0.84rem;
    color: var(--gray-muted);
    margin-top: 0.15rem;
}


/* ============================================================
   Reviews — page-specific (base card styles in shared/reviews.css)
   ============================================================ */

.loc-reviews-section {
    background: var(--orange-light);
}

/* Google badge — adapted from reviews.css */
.reviews-google-badge {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50rem;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.reviews-google-badge:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.reviews-badge-stars {
    color: var(--orange);
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.reviews-badge-score {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--dark);
    margin-left: 0.35rem;
}

.reviews-badge-count {
    color: var(--gray-muted);
    font-size: 0.9rem;
    margin-left: 0.35rem;
}


/* ============================================================
   Local Flavor
   ============================================================ */

.loc-local-section {
    background: var(--gray-bg);
}

.loc-local-section p {
    color: var(--gray-text);
    font-size: 1.05rem;
    line-height: 1.7;
}

.loc-local__callout {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.loc-local__callout h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.loc-local__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.loc-local__list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--gray-border);
    font-size: 0.93rem;
    color: var(--gray-text);
    line-height: 1.55;
}

.loc-local__list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.loc-local__list strong {
    color: var(--dark);
}