.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

main,
.site-footer,
.contact-page {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
}

#site-header-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.luxury-card {
    background-color: #fff8f0;
    border: 1px solid #d3e3ff;
    box-shadow: 0 10px 30px -10px rgba(9, 71, 127, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(9, 71, 127, 0.12);
}

.hero-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-section {
    isolation: isolate;
    height: calc(100dvh - var(--site-header-height, 6.75rem));
    min-height: 0;
    overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-section {
        height: 76vh;
        min-height: 27.5rem;
        max-height: 36rem;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        height: 66vh;
        min-height: 30rem;
        max-height: 38rem;
    }
}

.hero-section .hero-section-decoration {
    display: none;
}

.hero-scroll-indicator {
    position: absolute;
    right: 1rem;
    bottom: 2rem;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.92;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-scroll-indicator:hover {
    opacity: 1;
    transform: translateY(2px);
}

.hero-scroll-indicator.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.5rem);
}

.hero-scroll-track {
    position: relative;
    width: 2px;
    height: 3rem;
    overflow: hidden;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.22);
}

.hero-scroll-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    border-radius: 9999px;
    background: linear-gradient(180deg, #a3c9ff 0%, #ffffff 100%);
    transition: height 0.12s ease-out;
}

.hero-scroll-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    animation: heroScrollBounce 2.2s ease-in-out infinite;
}

.hero-scroll-arrow .material-symbols-outlined {
    font-size: 1.375rem !important;
    line-height: 1;
}

@keyframes heroScrollBounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(0.3rem);
    }
}

@media (min-width: 768px) {
    .hero-scroll-indicator {
        right: 1.5rem;
        bottom: 2.5rem;
    }

    .hero-scroll-track {
        height: 3.75rem;
    }

    .hero-scroll-arrow {
        width: 2.25rem;
        height: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-scroll-indicator {
        right: 2rem;
        bottom: 2.75rem;
    }

    .hero-scroll-track {
        height: 4.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll-arrow {
        animation: none;
    }

    .hero-scroll-progress {
        transition: none;
    }
}

@media (min-width: 1024px) {
    .hero-section .hero-section-decoration {
        display: block;
    }
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0.78;
}

.hero-slide-bg-dim {
    opacity: 0.65;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 48, 91, 0.58) 0%, rgba(0, 48, 91, 0.32) 52%, rgba(247, 249, 252, 0.72) 100%),
        linear-gradient(115deg, rgba(0, 48, 91, 0.42) 0%, transparent 62%);
}

.hero-inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
    height: 100%;
    max-width: 84rem;
    margin: 0 auto;
    padding: 0.875rem 1.5rem 1.25rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(220px, 18rem);
        gap: 1.25rem;
        padding: 1rem 2rem 1.25rem;
        align-items: center;
        align-content: center;
    }

    .hero-slide-overlay {
        background: linear-gradient(
            100deg,
            rgba(0, 48, 91, 0.6) 0%,
            rgba(0, 48, 91, 0.35) 46%,
            rgba(0, 48, 91, 0.12) 100%
        );
    }
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1.15fr) minmax(260px, 20rem);
        gap: 1.75rem;
        padding: 2rem 2.5rem 2.75rem;
        overflow-y: auto;
    }

    .hero-slide-overlay {
        background: linear-gradient(
            95deg,
            rgba(0, 48, 91, 0.62) 0%,
            rgba(0, 48, 91, 0.38) 44%,
            rgba(0, 48, 91, 0.1) 100%
        );
    }

    .hero-eyebrow {
        margin-bottom: 0.5rem;
        padding: 0.25rem 0.625rem;
        font-size: 0.6875rem;
    }

    .hero-title {
        margin-bottom: 0.625rem;
        font-size: clamp(1.875rem, 3vw, 2.5rem);
        line-height: 1.15;
    }

    .hero-lead {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .hero-appointment-card {
        padding: 1rem 1.125rem;
        border-radius: 1rem;
    }

    .hero-card-head {
        margin-bottom: 0.25rem;
    }

    .hero-card-title {
        font-size: 1.25rem;
    }

    .hero-card-text {
        margin-bottom: 0.625rem;
        font-size: 0.8125rem;
        line-height: 1.4;
    }

    .hero-card-list {
        margin-bottom: 0.75rem;
        gap: 0.35rem;
    }

    .hero-card-list li {
        font-size: 0.75rem;
    }

    .hero-card-actions {
        gap: 0.5rem;
    }

    .hero-card-btn {
        padding: 0.5625rem 0.875rem;
        font-size: 0.8125rem;
        border-radius: 0.625rem;
    }

    .hero-card-btn .material-symbols-outlined {
        font-size: 1rem !important;
    }
}

.hero-copy {
    text-align: left;
    max-width: 40rem;
    min-width: 0;
    flex-shrink: 0;
}

.hero-eyebrow {
    display: inline-block;
    margin: 0 0 0.75rem;
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #d3e3ff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(211, 227, 255, 0.28);
    border-radius: 9999px;
    backdrop-filter: blur(4px);
}

.hero-title {
    margin: 0 0 1rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.8vw, 3.35rem);
    line-height: 1.12;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 18px rgba(0, 24, 48, 0.28);
}

.hero-lead {
    margin: 0;
    max-width: 36rem;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.65;
    color: #eef4ff;
    text-shadow: 0 1px 10px rgba(0, 24, 48, 0.2);
}

@media (max-width: 1023px) {
    .hero-eyebrow {
        margin-bottom: 0.5rem;
        padding: 0.25rem 0.6rem;
        font-size: 0.6875rem;
    }

    .hero-title {
        margin-bottom: 0.5rem;
        font-size: clamp(1.45rem, 5.4vw, 2rem);
        line-height: 1.2;
    }

    .hero-lead {
        font-size: 0.875rem;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        overflow: hidden;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-eyebrow {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: clamp(1.7rem, 3.6vw, 2.25rem);
    }

    .hero-lead {
        -webkit-line-clamp: 3;
        line-clamp: 3;
        font-size: 0.9375rem;
    }
}

@media (max-height: 700px) and (max-width: 1023px) {
    .hero-inner {
        gap: 0.625rem;
        padding-top: 0.625rem;
        padding-bottom: 0.75rem;
    }

    .hero-title {
        font-size: clamp(1.25rem, 4.8vw, 1.6rem);
    }

    .hero-lead {
        -webkit-line-clamp: 1;
        line-clamp: 1;
        font-size: 0.8125rem;
    }
}

.hero-appointment-card {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
    padding: 1.375rem;
    border-radius: 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(0, 48, 91, 0.1);
    box-shadow: 0 16px 40px rgba(0, 24, 48, 0.14);
    opacity: 0;
    transform: translateX(1.5rem);
    flex-shrink: 0;
}

.hero-slide.active .hero-appointment-card {
    animation: fadeRight 0.85s ease 0.35s forwards;
}

.hero-card-head {
    margin-bottom: 0.35rem;
}

.hero-card-eyebrow {
    margin: 0 0 0.2rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #006d3a;
}

.hero-card-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #00305b;
}

.hero-card-text {
    margin: 0 0 0.875rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #424750;
}

.hero-card-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-card-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #424750;
}

.hero-card-list .material-symbols-outlined {
    font-size: 1.125rem !important;
    color: #006d3a;
}

.hero-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.hero-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    width: 100%;
    padding: 0.6875rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25rem;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-card-btn .material-symbols-outlined {
    font-size: 1.125rem !important;
}

.hero-btn-text-short {
    display: none;
}

.hero-card-btn-primary {
    color: #ffffff;
    background: #00305b;
    border: 1px solid #00305b;
}

.hero-card-btn-primary:hover {
    background: #09477f;
    border-color: #09477f;
    box-shadow: 0 8px 20px rgba(0, 48, 91, 0.22);
}

.hero-card-btn-outline {
    color: #00305b;
    background: #ffffff;
    border: 1px solid rgba(0, 48, 91, 0.18);
}

.hero-card-btn-outline:hover {
    background: #f7f9fc;
    border-color: rgba(0, 48, 91, 0.32);
}

.hero-card-btn-whatsapp {
    color: #ffffff;
    background: #006d3a;
    border: 1px solid #006d3a;
}

.hero-card-btn-whatsapp:hover {
    background: #007a42;
    border-color: #007a42;
    box-shadow: 0 8px 20px rgba(0, 109, 58, 0.22);
}

@media (min-width: 1024px) {
    .hero-appointment-card {
        margin-inline: 0;
        margin-left: auto;
        max-width: none;
    }
}

@media (max-width: 1023px) {
    .hero-appointment-card {
        max-width: 100%;
        margin-inline: 0;
        padding: 0.875rem 1rem;
        border-radius: 1rem;
        box-shadow: 0 10px 28px rgba(0, 24, 48, 0.1);
        border-top: 3px solid #006d3a;
    }

    .hero-card-head {
        margin-bottom: 0.35rem;
    }

    .hero-card-eyebrow {
        font-size: 0.625rem;
        letter-spacing: 0.08em;
    }

    .hero-card-title {
        font-size: 1.0625rem;
        line-height: 1.2;
    }

    .hero-card-text {
        margin-bottom: 0.625rem;
        font-size: 0.75rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        overflow: hidden;
    }

    .hero-card-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.35rem;
        margin-bottom: 0.625rem;
    }

    .hero-card-list li {
        gap: 0.25rem;
        padding: 0.25rem 0.5rem;
        font-size: 0.625rem;
        background: #f4f8fc;
        border: 1px solid rgba(0, 48, 91, 0.08);
        border-radius: 9999px;
    }

    .hero-card-list .material-symbols-outlined {
        font-size: 0.8125rem !important;
    }

    .hero-card-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .hero-card-btn {
        padding: 0.5rem 0.625rem;
        font-size: 0.75rem;
        border-radius: 0.625rem;
        gap: 0.25rem;
    }

    .hero-card-btn .material-symbols-outlined {
        font-size: 0.875rem !important;
    }

    .hero-card-btn-primary {
        grid-column: 1 / -1;
    }

    .hero-btn-text-long {
        display: none;
    }

    .hero-btn-text-short {
        display: inline;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-appointment-card {
        max-width: none;
        padding: 1rem 1.125rem;
    }

    .hero-card-title {
        font-size: 1.1875rem;
    }

    .hero-card-text {
        font-size: 0.8125rem;
    }

    .hero-card-btn {
        font-size: 0.8125rem;
        padding: 0.5625rem 0.75rem;
    }
}

@media (max-width: 479px) {
    .hero-card-text {
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }
}

@media (max-height: 700px) and (max-width: 1023px) {
    .hero-appointment-card {
        padding: 0.75rem 0.875rem;
    }

    .hero-card-list {
        margin-bottom: 0.5rem;
    }

    .hero-card-btn {
        padding: 0.4375rem 0.5rem;
        font-size: 0.6875rem;
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(2rem);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-stats-grid {
    align-items: center;
}

.hero-stats {
    padding-top: 1.375rem;
    padding-bottom: 1.375rem;
}

@media (min-width: 768px) {
    .hero-stats {
        padding-top: 1.625rem;
        padding-bottom: 1.625rem;
    }
}

@media (min-width: 1024px) {
    .hero-stats {
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
    }
}

.hero-stats-item {
    text-align: center;
}

.hero-stats-value {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.hero-stats-label {
    font-size: 0.625rem;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: 0.06em;
}

@media (min-width: 768px) {
    .hero-stats-value {
        font-size: 1.5rem;
    }

    .hero-stats-label {
        font-size: 0.6875rem;
    }
}

@media (min-width: 1024px) {
    .hero-stats-value {
        font-size: 1.75rem;
    }

    .hero-stats-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 767px) {
    .hero-stats-item-last {
        grid-column: 1 / -1;
        justify-self: center;
        width: 100%;
        max-width: 12rem;
    }
}

.mission-section {
    background: #ffffff;
    overflow: hidden;
    padding: 2.5rem 1.25rem;
}

.mission-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.mission-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.75rem;
}

.mission-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #006d3a;
}

.mission-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.375rem, 4.5vw, 2rem);
    line-height: 1.2;
    font-weight: 700;
    color: #00305b;
}

.mission-text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #424750;
}

.mission-action {
    padding-top: 0.25rem;
}

.mission-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5625rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.25rem;
    color: #00305b;
    text-decoration: none;
    border: 1px solid rgba(0, 48, 91, 0.22);
    border-radius: 9999px;
    background: #ffffff;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mission-btn:hover {
    color: #ffffff;
    background: #00305b;
    border-color: #00305b;
}

.mission-media {
    position: relative;
    width: 100%;
}

.mission-image-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 12px 32px rgba(0, 48, 91, 0.1);
}

.mission-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.mission-media-glow {
    position: absolute;
    border-radius: 9999px;
    filter: blur(48px);
    pointer-events: none;
}

.mission-media-glow-secondary {
    right: -1.5rem;
    bottom: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: #80fbaa;
    opacity: 0.22;
}

.mission-media-glow-primary {
    top: -1rem;
    left: -1rem;
    width: 6rem;
    height: 6rem;
    background: #09477f;
    opacity: 0.14;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .mission-section {
        padding: 3rem 2rem;
    }

    .mission-inner {
        gap: 2rem;
    }

    .mission-copy {
        gap: 0.875rem;
    }

    .mission-eyebrow {
        font-size: 0.75rem;
    }

    .mission-title {
        font-size: clamp(1.5rem, 3.2vw, 1.875rem);
    }

    .mission-text {
        font-size: 0.9375rem;
        line-height: 1.65;
    }

    .mission-btn {
        padding: 0.625rem 1.375rem;
        font-size: 0.875rem;
    }

    .mission-image-wrap {
        border-radius: 1.25rem;
    }

    .mission-media-glow-secondary {
        width: 10rem;
        height: 10rem;
    }

    .mission-media-glow-primary {
        width: 7rem;
        height: 7rem;
    }
}

@media (min-width: 1024px) {
    .mission-section {
        padding: 5rem 4rem;
    }

    .mission-inner {
        flex-direction: row;
        align-items: center;
        gap: 3.5rem;
    }

    .mission-copy,
    .mission-media {
        flex: 1 1 0;
        min-width: 0;
    }

    .mission-copy {
        gap: 1rem;
    }

    .mission-eyebrow {
        font-size: 0.75rem;
        letter-spacing: 0.12em;
    }

    .mission-title {
        font-size: clamp(2rem, 3vw, 2.75rem);
    }

    .mission-text {
        font-size: 1.0625rem;
        line-height: 1.7;
    }

    .mission-action {
        padding-top: 0.5rem;
    }

    .mission-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.9375rem;
        border-width: 2px;
        border-radius: 0.75rem;
    }

    .mission-image-wrap {
        border-radius: 1.5rem;
        box-shadow: 0 20px 48px rgba(0, 48, 91, 0.12);
    }

    .mission-media-glow-secondary {
        right: -1.5rem;
        bottom: -1.5rem;
        width: 16rem;
        height: 16rem;
        opacity: 0.3;
    }

    .mission-media-glow-primary {
        top: -1.5rem;
        left: -1.5rem;
        width: 12rem;
        height: 12rem;
        opacity: 0.2;
    }
}

.problems-section {
    background: #f2f4f7;
    overflow: hidden;
    padding: 2.5rem 1.25rem;
}

.problems-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.problems-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.625rem;
    margin: 0 auto 1.5rem;
    max-width: 36rem;
}

.problems-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.375rem, 4.5vw, 2rem);
    line-height: 1.2;
    font-weight: 700;
    color: #00305b;
}

.problems-lead {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #424750;
}

.problems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
}

.problems-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid rgba(0, 48, 91, 0.08);
    box-shadow: 0 8px 24px rgba(0, 48, 91, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.problems-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 48, 91, 0.14);
    box-shadow: 0 14px 32px rgba(0, 48, 91, 0.1);
}

.problems-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.75rem;
    border-radius: 9999px;
    background: rgba(0, 109, 58, 0.08);
    color: #006d3a;
}

.problems-card-icon .material-symbols-outlined {
    font-size: 1.125rem !important;
}

.problems-card-title {
    margin: 0 0 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.0625rem;
    line-height: 1.3;
    font-weight: 600;
    color: #00305b;
}

.problems-card-text {
    margin: 0 0 0.875rem;
    flex-grow: 1;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #424750;
}

.problems-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #006d3a;
    text-decoration: none;
    transition: gap 0.2s ease, opacity 0.2s ease;
}

.problems-card-link .material-symbols-outlined {
    font-size: 0.9375rem !important;
}

.problems-card-link:hover {
    gap: 0.4rem;
    opacity: 0.85;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .problems-section {
        padding: 3rem 2rem;
    }

    .problems-header {
        gap: 0.75rem;
        margin: 0 auto 1.75rem;
        max-width: 40rem;
    }

    .problems-title {
        font-size: clamp(1.5rem, 3.2vw, 1.875rem);
    }

    .problems-lead {
        font-size: 0.9375rem;
        line-height: 1.65;
    }

    .problems-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }

    .problems-card {
        padding: 1.125rem;
        border-radius: 1.125rem;
    }

    .problems-card-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 0.875rem;
    }

    .problems-card-title {
        font-size: 1.125rem;
    }

    .problems-card-text {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .problems-card-link {
        font-size: 0.8125rem;
    }
}

@media (min-width: 1024px) {
    .problems-section {
        padding: 5rem 4rem;
    }

    .problems-header {
        gap: 0.875rem;
        margin: 0 auto 2.5rem;
        max-width: 42rem;
    }

    .problems-title {
        font-size: clamp(2rem, 3vw, 2.75rem);
    }

    .problems-lead {
        font-size: 1.0625rem;
        line-height: 1.7;
    }

    .problems-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
        align-items: stretch;
    }

    .problems-card {
        padding: 1.5rem;
        border-radius: 1.25rem;
    }

    .problems-card-featured {
        transform: translateY(0.5rem);
    }

    .problems-card-featured:hover {
        transform: translateY(0.25rem);
    }

    .problems-card-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1rem;
    }

    .problems-card-icon .material-symbols-outlined {
        font-size: 1.375rem !important;
    }

    .problems-card-title {
        font-size: 1.375rem;
        margin-bottom: 0.625rem;
    }

    .problems-card-text {
        font-size: 0.9375rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }

    .problems-card-link {
        font-size: 0.875rem;
    }
}

.personas-section {
    background: #ffffff;
    overflow: hidden;
    padding: 2.5rem 1.25rem;
}

.personas-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.personas-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.625rem;
    margin-bottom: 1.5rem;
    max-width: 36rem;
}

.personas-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.375rem, 4.5vw, 2rem);
    line-height: 1.2;
    font-weight: 700;
    color: #00305b;
}

.personas-lead {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #424750;
}

.personas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
}

.persona-card {
    position: relative;
    overflow: hidden;
    min-height: 16.5rem;
    border-radius: 1rem;
    isolation: isolate;
}

.persona-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.persona-card:hover .persona-card-bg {
    transform: scale(1.05);
}

.persona-card-overlay {
    position: absolute;
    inset: 0;
}

.persona-card-overlay-primary {
    background: linear-gradient(180deg, rgba(0, 48, 91, 0.08) 0%, rgba(0, 48, 91, 0.88) 100%);
}

.persona-card-overlay-secondary {
    background: linear-gradient(180deg, rgba(0, 109, 58, 0.08) 0%, rgba(0, 109, 58, 0.88) 100%);
}

.persona-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 1rem;
    text-align: left;
    color: #ffffff;
}

.persona-card-title {
    margin: 0 0 0.375rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.0625rem;
    line-height: 1.25;
    font-weight: 600;
}

.persona-card-text {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.persona-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.25rem;
    text-decoration: none;
    border-radius: 9999px;
    background: #ffffff;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.persona-card-btn-primary {
    color: #00305b;
}

.persona-card-btn-secondary {
    color: #006d3a;
}

.persona-card-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

@media (min-width: 768px) and (max-width: 1023px) {
    .personas-section {
        padding: 3rem 2rem;
    }

    .personas-header {
        gap: 0.75rem;
        margin-bottom: 1.75rem;
        max-width: 40rem;
    }

    .personas-title {
        font-size: clamp(1.5rem, 3.2vw, 1.875rem);
    }

    .personas-lead {
        font-size: 0.9375rem;
        line-height: 1.65;
    }

    .personas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .persona-card {
        min-height: 18rem;
        border-radius: 1.125rem;
    }

    .persona-card-content {
        padding: 1.125rem;
    }

    .persona-card-title {
        font-size: 1.125rem;
    }

    .persona-card-text {
        font-size: 0.875rem;
        margin-bottom: 0.875rem;
    }

    .persona-card-btn {
        padding: 0.5625rem 1.125rem;
        font-size: 0.8125rem;
    }
}

@media (min-width: 1024px) {
    .personas-section {
        padding: 5rem 4rem;
    }

    .personas-header {
        gap: 0.875rem;
        margin-bottom: 2.5rem;
        max-width: 42rem;
    }

    .personas-title {
        font-size: clamp(2rem, 3vw, 2.75rem);
    }

    .personas-lead {
        font-size: 1.0625rem;
        line-height: 1.7;
    }

    .personas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .persona-card {
        min-height: 22rem;
        border-radius: 1.5rem;
    }

    .persona-card-content {
        padding: 1.5rem;
    }

    .persona-card-title {
        font-size: 1.375rem;
        margin-bottom: 0.5rem;
    }

    .persona-card-text {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .persona-card-btn {
        padding: 0.625rem 1.375rem;
        font-size: 0.875rem;
        border-radius: 0.625rem;
    }
}

.testimonials-section {
    background: #ffffff;
    overflow: hidden;
    padding: 2.5rem 0 0;
    width: 100%;
    max-width: 100%;
}

.testimonials-header {
    margin: 0 auto 1.5rem;
    padding: 0 1.25rem;
    max-width: 42rem;
    text-align: center;
}

.testimonials-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.375rem, 4.5vw, 2rem);
    line-height: 1.2;
    font-weight: 700;
    color: #00305b;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    max-width: 80rem;
    min-width: 0;
    margin: 0 auto;
    padding: 0 1.25rem 1.5rem;
    overflow: hidden;
}

.testimonials-carousel-viewport {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    contain: layout paint;
    container-type: inline-size;
    container-name: testimonials-carousel;
}

.testimonials-track {
    display: flex;
    gap: 0.875rem;
    width: max-content;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonials-card {
    flex: 0 0 100cqw;
    width: 100cqw;
    min-width: 100cqw;
    max-width: 100cqw;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid rgba(0, 48, 91, 0.08);
    box-shadow: 0 8px 24px rgba(0, 48, 91, 0.06);
    box-sizing: border-box;
}

.testimonials-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.testimonials-dot {
    width: 0.4375rem;
    height: 0.4375rem;
    padding: 0;
    border: none;
    border-radius: 9999px;
    background: rgba(0, 48, 91, 0.2);
    cursor: pointer;
    transition: width 0.25s ease, background-color 0.25s ease;
}

.testimonials-dot.is-active {
    width: 1.25rem;
    background: #00305b;
}

.testimonials-dot:hover {
    background: rgba(0, 48, 91, 0.45);
}

.testimonials-stars {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 0.75rem;
    color: #006d3a;
}

.testimonials-stars .material-symbols-outlined {
    font-size: 1rem !important;
}

.testimonials-quote {
    margin: 0 0 1rem;
    flex-grow: 1;
    font-size: 0.8125rem;
    line-height: 1.6;
    font-style: italic;
    color: #424750;
}

.testimonials-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonials-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: #d3e3ff;
    font-size: 0.75rem;
    font-weight: 700;
    color: #00305b;
    flex-shrink: 0;
}

.testimonials-name {
    margin: 0 0 0.125rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #00305b;
}

.testimonials-role {
    margin: 0;
    font-size: 0.6875rem;
    line-height: 1.3;
    color: #424750;
}

.testimonials-gallery-carousel {
    position: relative;
    width: 100%;
    max-width: 80rem;
    min-width: 0;
    margin: 0 auto;
    padding: 0 1.25rem 1.5rem;
    overflow: hidden;
}

.testimonials-gallery-viewport {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 0.75rem;
    contain: layout paint;
    container-type: inline-size;
    container-name: testimonials-gallery;
}

.testimonials-gallery-track {
    display: flex;
    gap: 0.5rem;
    width: max-content;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonials-gallery-item {
    flex: 0 0 calc((100cqw - 0.5rem) / 2);
    width: calc((100cqw - 0.5rem) / 2);
    min-width: calc((100cqw - 0.5rem) / 2);
    max-width: calc((100cqw - 0.5rem) / 2);
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    border-radius: 0.625rem;
    cursor: pointer;
    box-sizing: border-box;
}

.testimonials-gallery-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.875rem;
}

.testimonials-gallery-dot {
    width: 0.4375rem;
    height: 0.4375rem;
    padding: 0;
    border: none;
    border-radius: 9999px;
    background: rgba(0, 48, 91, 0.2);
    cursor: pointer;
    transition: width 0.25s ease, background-color 0.25s ease;
}

.testimonials-gallery-dot.is-active {
    width: 1.25rem;
    background: #00305b;
}

.testimonials-gallery-dot:hover {
    background: rgba(0, 48, 91, 0.45);
}

@media (min-width: 768px) and (max-width: 1023px) {
    .testimonials-section {
        padding-top: 3rem;
    }

    .testimonials-header {
        margin-bottom: 1.75rem;
        padding: 0 2rem;
    }

    .testimonials-title {
        font-size: clamp(1.5rem, 3.2vw, 1.875rem);
    }

    .testimonials-carousel {
        padding: 0 2rem 1.75rem;
    }

    .testimonials-track {
        gap: 1rem;
    }

    .testimonials-card {
        flex: 0 0 calc((100cqw - 1rem) / 2);
        width: calc((100cqw - 1rem) / 2);
        min-width: calc((100cqw - 1rem) / 2);
        max-width: calc((100cqw - 1rem) / 2);
        padding: 1.125rem;
        border-radius: 1.125rem;
    }

    .testimonials-quote {
        font-size: 0.875rem;
    }

    .testimonials-name {
        font-size: 0.875rem;
    }

    .testimonials-role {
        font-size: 0.75rem;
    }

    .testimonials-gallery-carousel {
        padding: 0 2rem 1.75rem;
    }

    .testimonials-gallery-track {
        gap: 0.625rem;
    }

    .testimonials-gallery-item {
        flex: 0 0 calc((100cqw - 1.25rem) / 3);
        width: calc((100cqw - 1.25rem) / 3);
        min-width: calc((100cqw - 1.25rem) / 3);
        max-width: calc((100cqw - 1.25rem) / 3);
        border-radius: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .testimonials-section {
        padding-top: 5rem;
    }

    .testimonials-header {
        margin-bottom: 2.5rem;
        padding: 0 4rem;
    }

    .testimonials-title {
        font-size: clamp(2rem, 3vw, 2.75rem);
    }

    .testimonials-carousel {
        padding: 0 4rem 2.5rem;
    }

    .testimonials-track {
        gap: 1.5rem;
    }

    .testimonials-card {
        flex: 0 0 calc((100cqw - 1.5rem) / 2);
        width: calc((100cqw - 1.5rem) / 2);
        min-width: calc((100cqw - 1.5rem) / 2);
        max-width: calc((100cqw - 1.5rem) / 2);
        padding: 1.5rem;
        border-radius: 1.25rem;
    }

    .testimonials-stars {
        margin-bottom: 1rem;
    }

    .testimonials-stars .material-symbols-outlined {
        font-size: 1.125rem !important;
    }

    .testimonials-quote {
        font-size: 0.9375rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }

    .testimonials-avatar {
        width: 3rem;
        height: 3rem;
        font-size: 0.875rem;
    }

    .testimonials-name {
        font-size: 0.9375rem;
    }

    .testimonials-role {
        font-size: 0.8125rem;
    }

    .testimonials-gallery-carousel {
        padding: 0 4rem 2.5rem;
    }

    .testimonials-gallery-track {
        gap: 0.75rem;
    }

    .testimonials-gallery-item {
        flex: 0 0 calc((100cqw - 2.25rem) / 4);
        width: calc((100cqw - 2.25rem) / 4);
        min-width: calc((100cqw - 2.25rem) / 4);
        max-width: calc((100cqw - 2.25rem) / 4);
        border-radius: 0.875rem;
    }

    .testimonials-gallery-viewport {
        border-radius: 1rem;
    }
}

.faq-section {
    background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
    padding: 2.5rem 1.25rem 3rem;
}

.faq-inner {
    max-width: 42rem;
    margin: 0 auto;
}

.faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.625rem;
    margin-bottom: 1.75rem;
}

.faq-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #006d3a;
}

.faq-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.375rem, 4.5vw, 2rem);
    line-height: 1.2;
    font-weight: 700;
    color: #00305b;
}

.faq-subtitle {
    margin: 0;
    max-width: 32rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #5c6673;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.faq-item {
    overflow: hidden;
    border: 1px solid rgba(0, 48, 91, 0.08);
    border-radius: 0.875rem;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 48, 91, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
    border-color: rgba(0, 109, 58, 0.22);
    box-shadow: 0 8px 24px rgba(0, 48, 91, 0.07);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9375rem 1rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question-text {
    font-size: 0.875rem;
    line-height: 1.45;
    font-weight: 600;
    color: #00305b;
}

.faq-icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: rgba(0, 48, 91, 0.06);
    color: #09477f;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.3s ease;
}

.faq-icon .material-symbols-outlined {
    font-size: 1.125rem !important;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    background: rgba(0, 109, 58, 0.1);
    color: #006d3a;
}

.faq-item[open] .faq-icon .material-symbols-outlined {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer > p {
    overflow: hidden;
    min-height: 0;
    margin: 0;
    padding: 0 1rem 1rem;
    font-size: 0.8125rem;
    line-height: 1.65;
    color: #5c6673;
}

.faq-question:hover .faq-icon {
    background: rgba(0, 48, 91, 0.1);
}

.faq-item[open] .faq-question:hover .faq-icon {
    background: rgba(0, 109, 58, 0.14);
}

@media (min-width: 768px) and (max-width: 1023px) {
    .faq-section {
        padding: 3rem 2rem 3.5rem;
    }

    .faq-inner {
        max-width: 44rem;
    }

    .faq-header {
        margin-bottom: 2rem;
        gap: 0.75rem;
    }

    .faq-subtitle {
        font-size: 0.9375rem;
    }

    .faq-list {
        gap: 0.75rem;
    }

    .faq-question {
        padding: 1.0625rem 1.125rem;
    }

    .faq-question-text {
        font-size: 0.9375rem;
    }

    .faq-answer > p {
        padding: 0 1.125rem 1.125rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .faq-section {
        padding: 4.5rem 4rem 5rem;
    }

    .faq-inner {
        max-width: 46rem;
    }

    .faq-header {
        margin-bottom: 2.5rem;
        gap: 0.875rem;
    }

    .faq-title {
        font-size: clamp(2rem, 3vw, 2.75rem);
    }

    .faq-subtitle {
        font-size: 1rem;
        line-height: 1.7;
    }

    .faq-list {
        gap: 0.875rem;
    }

    .faq-item {
        border-radius: 1rem;
    }

    .faq-question {
        padding: 1.125rem 1.25rem;
    }

    .faq-question-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    .faq-icon {
        width: 2rem;
        height: 2rem;
    }

    .faq-icon .material-symbols-outlined {
        font-size: 1.25rem !important;
    }

    .faq-answer > p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9375rem;
        line-height: 1.7;
    }
}

.home-contact-mini {
    background: #00305b;
    padding: 2.5rem 1.25rem;
}

.home-contact-mini-inner {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    max-width: 80rem;
    margin: 0 auto;
}

.home-contact-mini-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #80fbaa;
}

.home-contact-mini-title {
    margin: 0.375rem 0 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.375rem, 4.5vw, 2rem);
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.home-contact-mini-text {
    margin: 0.75rem 0 0;
    max-width: 28rem;
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.home-contact-mini-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1.25rem;
}

.home-contact-mini-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.6875rem 1.125rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.home-contact-mini-btn .material-symbols-outlined {
    font-size: 1.125rem !important;
    line-height: 1;
}

.home-contact-mini-btn-primary {
    background: #006d3a;
    color: #ffffff;
}

.home-contact-mini-btn-primary:hover {
    background: #008847;
    transform: translateY(-1px);
}

.home-contact-mini-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.home-contact-mini-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.home-contact-mini-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
}

.home-contact-mini-card {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.9375rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.home-contact-mini-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.home-contact-mini-card-icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    background: rgba(128, 251, 170, 0.14);
    color: #80fbaa;
}

.home-contact-mini-card-icon .material-symbols-outlined {
    font-size: 1.25rem !important;
    line-height: 1;
}

.home-contact-mini-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.1875rem;
    min-width: 0;
}

.home-contact-mini-card-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.home-contact-mini-card-value {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #ffffff;
}

.contact-page-hero {
    background: linear-gradient(180deg, #00305b 0%, #09477f 100%);
    padding: 2.5rem 1.25rem 3.25rem;
}

.contact-page-hero-inner {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
}

.contact-page-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #80fbaa;
}

.contact-page-title {
    margin: 0.5rem 0 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.625rem, 4.5vw, 2.5rem);
    line-height: 1.15;
    font-weight: 700;
    color: #ffffff;
}

.contact-page-lead {
    margin: 0.75rem auto 0;
    max-width: 34rem;
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
}

.contact-page-main {
    padding: 0 1.25rem 3rem;
    margin-top: -1.5rem;
    background: #f4f7fb;
}

.contact-page-shell {
    max-width: 72rem;
    margin: 0 auto;
}

.contact-page-panel {
    border: 1px solid rgba(0, 48, 91, 0.08);
    border-radius: 1.125rem;
    background: #ffffff;
    box-shadow: 0 16px 48px rgba(0, 48, 91, 0.08);
    overflow: hidden;
}

.contact-page-layout {
    display: grid;
    grid-template-columns: 1fr;
}

.contact-page-form-panel {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(0, 48, 91, 0.08);
}

.contact-page-sidebar {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 1.25rem;
    background: #fafbfd;
}

.contact-page-sidebar-header {
    margin-bottom: 1.25rem;
}

.contact-page-sidebar-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 2.8vw, 1.625rem);
    line-height: 1.25;
    font-weight: 700;
    color: #00305b;
}

.contact-page-sidebar-text {
    margin: 0.5rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.65;
    color: #5c6673;
}

.contact-page-details {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid rgba(0, 48, 91, 0.08);
    border-radius: 0.875rem;
    background: #ffffff;
    overflow: hidden;
}

.contact-page-details li + li {
    border-top: 1px solid rgba(0, 48, 91, 0.06);
}

.contact-page-detail {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.875rem;
    padding: 0.9375rem 1rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.contact-page-detail:hover {
    background: rgba(0, 48, 91, 0.03);
}

.contact-page-detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.375rem;
    height: 2.375rem;
    border-radius: 0.625rem;
    background: rgba(0, 48, 91, 0.06);
    color: #09477f;
}

.contact-page-detail-icon .material-symbols-outlined {
    font-size: 1.1875rem !important;
    line-height: 1;
}

.contact-page-detail-body {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}

.contact-page-detail-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #727781;
}

.contact-page-detail-value {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #00305b;
}

.contact-page-detail-arrow {
    font-size: 1.125rem !important;
    line-height: 1;
    color: rgba(0, 48, 91, 0.28);
    transition: color 0.2s ease, transform 0.2s ease;
}

.contact-page-detail:hover .contact-page-detail-arrow {
    color: #006d3a;
    transform: translateX(2px);
}

.contact-page-emergency {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(147, 0, 10, 0.12);
    background: rgba(147, 0, 10, 0.04);
}

.contact-page-emergency-icon {
    font-size: 1.375rem !important;
    line-height: 1;
    color: #93000a;
    flex-shrink: 0;
}

.contact-page-emergency-body {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.contact-page-emergency-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #93000a;
}

.contact-page-emergency-value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #00305b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-page-emergency-value:hover {
    color: #09477f;
}

.contact-page-map {
    margin-top: 1rem;
}

.contact-page-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.625rem;
}

.contact-page-map-title {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #00305b;
}

.contact-page-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #006d3a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-page-map-link:hover {
    color: #09477f;
}

.contact-page-map-link .material-symbols-outlined {
    font-size: 0.9375rem !important;
    line-height: 1;
}

.contact-page-map-frame {
    position: relative;
    overflow: hidden;
    border-radius: 0.875rem;
    border: 1px solid rgba(0, 48, 91, 0.08);
    aspect-ratio: 16 / 10;
    background: #e8edf3;
}

.contact-page-map-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-page-form-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-page-form-header {
    margin-bottom: 1.25rem;
}

.contact-page-form-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 2.8vw, 1.625rem);
    line-height: 1.25;
    font-weight: 700;
    color: #00305b;
}

.contact-page-form-subtitle {
    margin: 0.5rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #5c6673;
}

.contact-page-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.contact-page-alert p {
    margin: 0;
}

.contact-page-alert .material-symbols-outlined {
    font-size: 1.25rem !important;
    line-height: 1;
    flex-shrink: 0;
}

.contact-page-alert-success {
    background: rgba(0, 109, 58, 0.08);
    border: 1px solid rgba(0, 109, 58, 0.16);
    color: #004d28;
}

.contact-page-alert-success .material-symbols-outlined {
    color: #006d3a;
}

.contact-page-alert-error {
    background: rgba(147, 0, 10, 0.06);
    border: 1px solid rgba(147, 0, 10, 0.14);
    color: #93000a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.contact-form-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #00305b;
}

.contact-form-field .contact-form-input,
.contact-form-field input.contact-form-input,
.contact-form-field select.contact-form-input,
.contact-form-field textarea.contact-form-input {
    display: block;
    width: 100%;
    min-height: 2.875rem;
    padding: 0.75rem 0.875rem;
    border: 1px solid rgba(0, 48, 91, 0.1);
    border-radius: 0.625rem;
    background-color: #f8fafc;
    font-family: inherit;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: #191c1e;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form-field textarea.contact-form-input {
    min-height: 7rem;
    resize: vertical;
}

.contact-form-field .contact-form-input::placeholder {
    color: #8a939f;
    opacity: 1;
}

.contact-form-field .contact-form-input:focus,
.contact-form-field input.contact-form-input:focus,
.contact-form-field select.contact-form-input:focus,
.contact-form-field textarea.contact-form-input:focus {
    outline: none;
    border-color: rgba(0, 109, 58, 0.4);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 109, 58, 0.1);
}

.contact-form-field select.contact-form-input {
    padding-right: 2.25rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300305b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    cursor: pointer;
}

.contact-form-field select.contact-form-input:focus {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23006d3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.contact-form-field select.contact-form-input option {
    color: #191c1e;
    background: #ffffff;
}

.contact-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.8125rem 1.25rem;
    border: none;
    border-radius: 9999px;
    background: #00305b;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-submit:hover {
    background: #09477f;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 48, 91, 0.18);
}

.contact-form-submit .material-symbols-outlined {
    font-size: 1.125rem !important;
    line-height: 1;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .home-contact-mini {
        padding: 3rem 2rem;
    }

    .home-contact-mini-inner {
        gap: 2rem;
    }

    .home-contact-mini-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-page-hero {
        padding: 3rem 2rem 3.75rem;
    }

    .contact-page-main {
        padding: 0 2rem 3.5rem;
        margin-top: -2rem;
    }

    .contact-page-sidebar,
    .contact-page-form-panel {
        padding: 1.75rem;
    }

    .contact-page-map-frame {
        aspect-ratio: 16 / 9;
    }

    .contact-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .home-contact-mini {
        padding: 4rem;
    }

    .home-contact-mini-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
        align-items: center;
        gap: 2.5rem;
    }

    .home-contact-mini-title {
        font-size: clamp(2rem, 3vw, 2.5rem);
    }

    .home-contact-mini-text {
        font-size: 0.9375rem;
    }

    .home-contact-mini-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .contact-page-hero {
        padding: 3.5rem 4rem 4.5rem;
    }

    .contact-page-main {
        padding: 0 4rem 5rem;
        margin-top: -2.5rem;
    }

    .contact-page-layout {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        align-items: stretch;
    }

    .contact-page-sidebar {
        order: 0;
        padding: 2rem;
        border-bottom: none;
        border-right: 1px solid rgba(0, 48, 91, 0.08);
    }

    .contact-page-form-panel {
        order: 0;
        border-bottom: none;
        padding: 2rem;
        position: sticky;
        top: calc(var(--site-header-height, 6.75rem) + 1rem);
        align-self: start;
    }

    .contact-page-sidebar-text,
    .contact-page-form-subtitle {
        font-size: 0.875rem;
    }

    .contact-page-detail-value {
        font-size: 0.875rem;
    }
}

.site-footer {
    margin-top: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border-top: 1px solid rgba(0, 48, 91, 0.08);
}

.site-footer-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 3rem 1.25rem 1.5rem;
}

.site-footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.site-footer-brand {
    max-width: 22rem;
}

.site-footer-logo {
    display: inline-flex;
    max-width: 11rem;
}

.site-footer-logo .site-logo {
    width: 100%;
    height: auto;
    max-height: 2.75rem;
}

.site-footer-tagline {
    margin: 1rem 0 0;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #424750;
}

.site-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.site-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(0, 48, 91, 0.1);
    background: #ffffff;
    color: #00305b;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-footer-social-link .material-symbols-outlined {
    font-size: 1.125rem;
    line-height: 1;
}

.site-footer-social-link:hover {
    background: #00305b;
    border-color: #00305b;
    color: #ffffff;
    transform: translateY(-1px);
}

.site-footer-heading {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00305b;
}

.site-footer-links {
    margin: 0.875rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.site-footer-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1.4;
    color: #424750;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer-link:hover {
    color: #006d3a;
    transform: translateX(2px);
}

.site-footer-contact-list {
    margin: 0.5rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.site-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4375rem 0;
    border: none;
    border-bottom: 1px solid rgba(0, 48, 91, 0.06);
    border-radius: 0;
    background: transparent;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer-contact-list li:last-child .site-footer-contact-item {
    border-bottom: none;
    padding-bottom: 0;
}

.site-footer-contact-item:hover {
    border-color: rgba(0, 109, 58, 0.2);
    box-shadow: none;
    transform: none;
}

.site-footer-contact-item:hover .site-footer-contact-value {
    color: #006d3a;
}

.site-footer-contact-icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 1.625rem;
    height: 1.625rem;
    border-radius: 0.375rem;
    background: rgba(0, 48, 91, 0.06);
    color: #00305b;
}

.site-footer-contact-icon .material-symbols-outlined {
    font-size: 0.9375rem;
    line-height: 1;
}

.site-footer-contact-value {
    font-size: 0.75rem;
    line-height: 1.35;
    color: #191c1e;
    word-break: break-word;
}

.site-footer-emergency {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.625rem;
    padding: 0.4375rem 0.625rem;
    border-radius: 0.5rem;
    background: rgba(186, 26, 26, 0.08);
    border: 1px solid rgba(186, 26, 26, 0.14);
    color: #93000a;
    font-size: 0.6875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    max-width: 100%;
}

.site-footer-emergency::before {
    content: 'Emergency';
    flex-shrink: 0;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.85;
}

.site-footer-emergency-text {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-footer-emergency .material-symbols-outlined {
    font-size: 1rem;
    line-height: 1;
}

.site-footer-emergency:hover {
    background: rgba(186, 26, 26, 0.12);
    border-color: rgba(186, 26, 26, 0.28);
}

.site-footer-cta {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding: 1.5rem;
    border-radius: 1rem;
    background: #00305b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px -20px rgba(0, 48, 91, 0.45);
}

.site-footer-cta-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.125rem, 3.5vw, 1.5rem);
    line-height: 1.25;
    font-weight: 700;
    color: #ffffff;
}

.site-footer-cta-text {
    margin: 0.5rem 0 0;
    max-width: 32rem;
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.site-footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.75rem 1.125rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.site-footer-cta-btn .material-symbols-outlined {
    font-size: 1.125rem;
    line-height: 1;
}

.site-footer-cta-btn-primary {
    background: #006d3a;
    color: #ffffff;
}

.site-footer-cta-btn-primary:hover {
    background: #008847;
    transform: translateY(-1px);
}

.site-footer-cta-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.site-footer-cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.site-footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 48, 91, 0.08);
}

.site-footer-copyright {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #727781;
}

.site-footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer-legal-link {
    font-size: 0.75rem;
    color: #424750;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-legal-link:hover {
    color: #00305b;
}

@media (min-width: 640px) {
    .site-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 1.5rem;
    }

    .site-footer-brand {
        grid-column: 1 / -1;
    }

    .site-footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .site-footer-inner {
        padding: 3.5rem 2rem 1.75rem;
    }

    .site-footer-main {
        grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
        gap: 2.5rem 2rem;
    }

    .site-footer-brand {
        grid-column: auto;
    }

    .site-footer-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1.75rem 2rem;
    }
}

@media (min-width: 1024px) {
    .site-footer-inner {
        padding: 4rem 4rem 2rem;
    }

    .site-footer-main {
        gap: 3rem;
    }

    .site-footer-tagline {
        font-size: 0.9375rem;
    }

    .site-footer-link {
        font-size: 0.875rem;
    }
}

.heartbeat-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 5s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(2.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(1.75rem);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

[data-reveal='fade'] {
    transform: none;
}

[data-reveal='left'] {
    transform: translateX(2rem);
}

[data-reveal='right'] {
    transform: translateX(-2rem);
}

[data-reveal='scale'] {
    transform: scale(0.94);
}

[data-reveal='scale'].is-visible {
    transform: scale(1);
}

.luxury-card[data-reveal] {
    opacity: 0;
    transform: translateY(1.75rem);
}

.luxury-card[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.fixed-fab-stack {
    position: fixed;
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.fixed-fab-stack > * {
    pointer-events: auto;
}

.fixed-fab-stack-left {
    right: auto;
    left: max(12px, env(safe-area-inset-left, 0px));
}

.fixed-fab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    color: #ffffff;
    box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}

.fixed-fab-icon {
    font-size: 1.25rem;
    line-height: 1;
}

@media (min-width: 768px) {
    .fixed-fab-stack {
        right: max(24px, env(safe-area-inset-right, 0px));
        bottom: calc(2.25rem + env(safe-area-inset-bottom, 0px));
        gap: 10px;
    }

    .fixed-fab-stack-left {
        right: auto;
        left: max(24px, env(safe-area-inset-left, 0px));
    }

    .fixed-fab-btn {
        width: 3.25rem;
        height: 3.25rem;
    }

    .fixed-fab-icon {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .fixed-fab-stack {
        right: max(64px, env(safe-area-inset-right, 0px));
        bottom: 64px;
        gap: 12px;
    }

    .fixed-fab-stack-left {
        right: auto;
        left: max(64px, env(safe-area-inset-left, 0px));
    }

    .fixed-fab-btn {
        width: 4rem;
        height: 4rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .fixed-fab-icon {
        font-size: 1.875rem;
    }
}

.fixed-fab-btn:hover {
    transform: scale(1.05);
}

.fixed-fab-call {
    background-color: #00305b;
}

.fixed-fab-whatsapp {
    background-color: #006d3a;
}

.fixed-fab-chatbot {
    background-color: #09477f;
    border: none;
    cursor: pointer;
}

.pulse-chatbot {
    animation: pulse-chatbot 2s infinite;
}

@keyframes pulse-chatbot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(9, 71, 127, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(9, 71, 127, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(9, 71, 127, 0);
    }
}

.chatbot-panel {
    position: fixed;
    left: max(12px, env(safe-area-inset-left, 0px));
    bottom: calc(2rem + 2.75rem + 8px + env(safe-area-inset-bottom, 0px));
    z-index: 60;
    width: min(22rem, calc(100% - 24px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
    max-height: min(28rem, calc(100dvh - 7rem));
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(0, 48, 91, 0.1);
    border-radius: 1rem;
    box-shadow: 0 20px 50px -12px rgba(0, 48, 91, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

.chatbot-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chatbot-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1rem 0.75rem;
    border-bottom: 1px solid rgba(0, 48, 91, 0.08);
}

.chatbot-panel-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #00305b;
}

.chatbot-panel-subtitle {
    margin: 0.25rem 0 0;
    font-size: 0.8125rem;
    color: #424750;
}

.chatbot-panel-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 9999px;
    background: #eceef1;
    color: #00305b;
    cursor: pointer;
    flex-shrink: 0;
}

.chatbot-panel-close:hover {
    background: #e0e3e6;
}

.chatbot-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chatbot-message {
    max-width: 90%;
    padding: 0.75rem 0.875rem;
    border-radius: 0.875rem;
    font-size: 0.875rem;
    line-height: 1.45;
}

.chatbot-message p {
    margin: 0;
}

.chatbot-message-bot {
    align-self: flex-start;
    background: #eceef1;
    color: #191c1e;
    border-bottom-left-radius: 0.25rem;
}

.chatbot-message-user {
    align-self: flex-end;
    background: #00305b;
    color: #ffffff;
    border-bottom-right-radius: 0.25rem;
}

.chatbot-panel-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid rgba(0, 48, 91, 0.08);
}

.chatbot-quick-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.5rem 0.625rem;
    border: 1px solid rgba(0, 48, 91, 0.12);
    border-radius: 0.625rem;
    background: #f7f9fc;
    color: #00305b;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.chatbot-quick-btn:hover {
    background: #eceef1;
    border-color: rgba(0, 48, 91, 0.2);
}

@media (min-width: 768px) {
    .chatbot-panel {
        left: max(24px, env(safe-area-inset-left, 0px));
        bottom: calc(2.25rem + 3.25rem + 10px + env(safe-area-inset-bottom, 0px));
        width: min(24rem, calc(100% - 48px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
    }
}

@media (min-width: 1024px) {
    .chatbot-panel {
        left: max(64px, env(safe-area-inset-left, 0px));
        bottom: calc(64px + 4rem + 12px);
    }
}

@media (max-width: 767px) {
    .pulse-call,
    .pulse-whatsapp,
    .pulse-chatbot {
        animation: none;
    }

    .fixed-fab-btn {
        box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.28);
    }
}

.pulse-call {
    animation: pulse-primary 2s infinite;
}

.pulse-whatsapp {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-primary {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 48, 91, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(0, 48, 91, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 48, 91, 0);
    }
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(43, 174, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(43, 174, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(43, 174, 102, 0);
    }
}

#site-header {
    position: relative;
    z-index: 50;
}

#site-header-wrap {
    --site-header-height: 5.75rem;
    --navbar-height: 3.5rem;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    width: 100%;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

.main-navbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 48, 91, 0.08);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

@media (max-width: 767px) {
    #site-header-wrap.topbar-is-hidden {
        --site-header-height: var(--navbar-height);
    }

    #site-header-wrap.topbar-is-hidden .topbar {
        display: none;
    }

    #site-header-wrap.is-scrolled .main-navbar {
        box-shadow: 0 4px 18px -8px rgba(0, 48, 91, 0.14);
    }

    #site-header-wrap.topbar-is-hidden .main-navbar {
        border-bottom-color: rgba(0, 48, 91, 0.1);
    }

    .topbar.is-hidden {
        display: none;
        max-height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

@media (min-width: 768px) {
    #site-header-wrap {
        --site-header-height: 6.5rem;
    }

    #site-header-wrap.topbar-is-hidden {
        --site-header-height: 4.5rem;
    }

    #site-header-wrap.is-scrolled .main-navbar {
        box-shadow: 0 6px 20px -10px rgba(0, 48, 91, 0.12);
    }
}

@media (min-width: 1024px) {
    #site-header-wrap {
        --site-header-height: 6.75rem;
    }

    #site-header-wrap.topbar-is-hidden {
        --site-header-height: 4.75rem;
    }
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 0.6875rem 1rem;
}

@media (min-width: 768px) {
    .navbar-inner {
        padding: 0.75rem 1.25rem;
        gap: 1.25rem;
    }
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    flex-shrink: 0;
    max-width: min(58vw, 11rem);
}

@media (min-width: 640px) {
    .navbar-brand {
        max-width: 13rem;
    }
}

@media (min-width: 1024px) {
    .navbar-brand {
        max-width: 20rem;
    }
}

.site-logo {
    display: block;
    width: auto;
    height: auto;
    max-height: 3rem;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
}

.navbar-brand .site-logo {
    max-height: 2rem;
}

@media (min-width: 640px) {
    .navbar-brand .site-logo {
        max-height: 2.375rem;
    }
}

@media (min-width: 1024px) {
    .navbar-brand .site-logo {
        max-height: 3.625rem;
    }
}

.navbar-menu {
    align-items: center;
    justify-content: center;
    gap: 0.125rem;
    flex: 1;
}

.navbar-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.4375rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #5a6170;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.navbar-link:hover {
    color: #00305b;
    background-color: #f7f9fc;
}

.navbar-link.is-active {
    color: #00305b;
    font-weight: 600;
}

.navbar-link.is-active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.2rem;
    width: 1rem;
    height: 2px;
    border-radius: 9999px;
    background: #00305b;
    transform: translateX(-50%);
}

.navbar-link-quiet {
    color: #00305b;
}

.navbar-link-quiet:hover {
    background: transparent;
    opacity: 0.75;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.navbar-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: none;
    border-radius: 9999px;
    background: transparent;
    color: #00305b;
    flex-shrink: 0;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar-icon-btn:hover {
    background: #f7f9fc;
}

.navbar-icon-btn .material-symbols-outlined {
    font-size: 1.375rem !important;
    line-height: 1;
}

.navbar-search-backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(0, 28, 55, 0.35);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.navbar-search-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.navbar-search-panel {
    position: fixed;
    top: 1rem;
    left: 50%;
    z-index: 70;
    width: calc(100% - 2rem);
    max-width: 34rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-0.625rem);
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar-search-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.navbar-search-inner {
    width: 100%;
}

.navbar-search-card {
    overflow: hidden;
    border: 1px solid rgba(0, 48, 91, 0.08);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow:
        0 4px 6px rgba(0, 48, 91, 0.04),
        0 20px 48px rgba(0, 48, 91, 0.12);
}

.navbar-search-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid rgba(0, 48, 91, 0.06);
    background: #ffffff;
}

.navbar-search-form:focus-within {
    background: #ffffff;
}

.navbar-search-form-icon {
    font-size: 1.25rem !important;
    line-height: 1;
    color: #09477f;
    flex-shrink: 0;
}

.navbar-search-input {
    flex: 1;
    min-width: 0;
    padding: 0.125rem 0;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.875rem;
    line-height: 1.4;
    color: #00305b;
    outline: none;
}

.navbar-search-input::placeholder {
    color: #8a939f;
}

.navbar-search-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    border-radius: 9999px;
    background: #f4f7fb;
    color: #5c6673;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar-search-close:hover {
    background: rgba(0, 48, 91, 0.08);
    color: #00305b;
}

.navbar-search-close .material-symbols-outlined {
    font-size: 1.125rem !important;
    line-height: 1;
}

.navbar-search-body {
    padding: 0.75rem;
    background: #fafbfd;
}

.navbar-search-body-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0 0.375rem 0.625rem;
}

.navbar-search-body-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #727781;
}

.navbar-search-body-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    color: #8a939f;
}

.navbar-search-kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.375rem;
    padding: 0.125rem 0.375rem;
    border: 1px solid rgba(0, 48, 91, 0.12);
    border-radius: 0.3125rem;
    background: #ffffff;
    font-family: inherit;
    font-size: 0.625rem;
    font-weight: 600;
    line-height: 1.2;
    color: #5c6673;
}

.navbar-search-results {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 15.5rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 48, 91, 0.18) transparent;
}

.navbar-search-results::-webkit-scrollbar {
    width: 0.3125rem;
}

.navbar-search-results::-webkit-scrollbar-thumb {
    border-radius: 9999px;
    background: rgba(0, 48, 91, 0.16);
}

.navbar-search-results:empty {
    display: none;
}

.navbar-search-result {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6875rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 0.625rem;
    background: #ffffff;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.navbar-search-result:hover {
    border-color: rgba(0, 109, 58, 0.16);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 48, 91, 0.06);
}

.navbar-search-result-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.125rem;
    height: 2.125rem;
    border-radius: 0.5rem;
    background: rgba(0, 48, 91, 0.06);
    color: #09477f;
}

.navbar-search-result-icon .material-symbols-outlined {
    font-size: 1.125rem !important;
    line-height: 1;
}

.navbar-search-result-body {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}

.navbar-search-result-label {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.35;
    color: #00305b;
}

.navbar-search-result-hint {
    font-size: 0.6875rem;
    line-height: 1.4;
    color: #727781;
}

.navbar-search-result-arrow {
    font-size: 1.125rem !important;
    line-height: 1;
    color: rgba(0, 48, 91, 0.24);
    transition: color 0.2s ease, transform 0.2s ease;
}

.navbar-search-result:hover .navbar-search-result-arrow {
    color: #006d3a;
    transform: translateX(2px);
}

.navbar-search-result.is-hidden {
    display: none;
}

.navbar-search-empty {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 0.75rem;
    border-radius: 0.625rem;
    background: #ffffff;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #727781;
}

.navbar-search-empty .material-symbols-outlined {
    font-size: 1.25rem !important;
    line-height: 1;
    color: #8a939f;
}

@media (min-width: 768px) {
    .navbar-search-panel {
        top: 1.25rem;
        width: calc(100% - 3rem);
        max-width: 36rem;
    }

    .navbar-search-form {
        padding: 1rem 1.125rem;
    }

    .navbar-search-body {
        padding: 0.875rem;
    }

    .navbar-search-result-label {
        font-size: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .navbar-search-panel {
        top: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .navbar-search-panel,
    .navbar-search-backdrop {
        transition: none;
    }
}

.navbar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5625rem 1rem;
    font-size: 0.8125rem;
    line-height: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    background: #00305b;
    border: 1px solid #00305b;
    border-radius: 9999px;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.navbar-cta:hover {
    background: #09477f;
    border-color: #09477f;
    box-shadow: 0 4px 14px rgba(0, 48, 91, 0.18);
}

.navbar-cta-block {
    width: 100%;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #00305b;
    flex-shrink: 0;
    cursor: pointer;
}

.navbar-mobile-tools {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}

.navbar-toggle:hover {
    background: transparent;
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3125rem;
    width: 1.375rem;
    height: 0.875rem;
}

.hamburger-lines span {
    display: block;
    width: 100%;
    height: 2px;
    background: #00305b;
    border-radius: 9999px;
}

.mobile-nav-panel-inner {
    padding: 0.5rem 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.mobile-nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1rem 0.75rem;
    border-bottom: 1px solid rgba(0, 48, 91, 0.08);
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 2;
}

.mobile-nav-drawer-title {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    max-width: calc(100% - 3rem);
    text-decoration: none;
    color: inherit;
}

.mobile-nav-logo {
    max-height: 2rem;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.mobile-nav-drawer-title .site-logo {
    max-height: 2rem;
}

.mobile-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(0, 48, 91, 0.12);
    border-radius: 0.5rem;
    background: #ffffff;
    color: #00305b;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.mobile-nav-close:hover {
    background: #f7f9fc;
    border-color: rgba(0, 48, 91, 0.22);
}

.mobile-nav-close .material-symbols-outlined {
    font-size: 1.25rem !important;
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    width: min(22rem, 85vw);
    max-width: 100%;
    background: #ffffff;
    box-shadow: -10px 0 40px rgba(0, 48, 91, 0.14);
    transform: translateX(100%);
    visibility: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.38s;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
    .mobile-nav-panel {
        width: 85vw;
    }
}

.mobile-nav-panel.is-open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav-panel.is-open .mobile-nav-link,
.mobile-nav-panel.is-open .mobile-nav-divider,
.mobile-nav-panel.is-open .navbar-cta-block {
    animation: drawerItemIn 0.42s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.mobile-nav-panel.is-open .mobile-nav-link:nth-child(1) { animation-delay: 0.06s; }
.mobile-nav-panel.is-open .mobile-nav-link:nth-child(2) { animation-delay: 0.1s; }
.mobile-nav-panel.is-open .mobile-nav-link:nth-child(3) { animation-delay: 0.14s; }
.mobile-nav-panel.is-open .mobile-nav-link:nth-child(4) { animation-delay: 0.18s; }
.mobile-nav-panel.is-open .mobile-nav-link:nth-child(5) { animation-delay: 0.22s; }
.mobile-nav-panel.is-open .mobile-nav-divider { animation-delay: 0.26s; }
.mobile-nav-panel.is-open .navbar-cta-block { animation-delay: 0.32s; }

@keyframes drawerItemIn {
    from {
        opacity: 0;
        transform: translateX(1.25rem);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: #424750;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
    background-color: #f7f9fc;
    color: #00305b;
    outline: none;
}

.mobile-nav-link-active {
    color: #00305b;
    font-weight: 600;
    background-color: #f7f9fc;
}

.mobile-nav-divider {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 48, 91, 0.08);
}

.mobile-nav-divider-title {
    margin: 0 0 0.5rem;
    padding: 0 0.875rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #727781;
}

.mobile-nav-contact {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: #5a6170;
    text-decoration: none;
}

.mobile-nav-contact .material-symbols-outlined {
    font-size: 1rem !important;
    color: #006d3a;
    margin-top: 0.1rem;
}

.mobile-nav-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem 0;
}

.mobile-nav-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    border: 1px solid rgba(0, 48, 91, 0.1);
    color: #00305b;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav-social:hover {
    background: #00305b;
    color: #fff;
}

.mobile-nav-social .material-symbols-outlined {
    font-size: 1rem !important;
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1190;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.mobile-nav-open #site-header-wrap,
body.navbar-search-open #site-header-wrap {
    z-index: 100;
}

body.mobile-nav-open .fixed-fab-stack,
body.mobile-nav-open .chatbot-panel,
body.navbar-search-open .fixed-fab-stack,
body.navbar-search-open .chatbot-panel {
    z-index: 40;
}

body.mobile-nav-open,
body.navbar-search-open {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .mobile-nav-panel,
    .mobile-nav-backdrop {
        transition: none;
    }

    .mobile-nav-panel.is-open .mobile-nav-link,
    .mobile-nav-panel.is-open .mobile-nav-divider,
    .mobile-nav-panel.is-open .navbar-cta-block {
        animation: none;
    }
}

.glass-nav {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.85);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.topbar {
    --topbar-height: 1.75rem;
    width: 100%;
    max-width: 100%;
    max-height: var(--topbar-height);
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    pointer-events: auto;
    transition:
        max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        visibility 0.35s ease,
        border-color 0.3s ease;
}

.topbar-inner {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.topbar-marquee {
    max-width: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .topbar {
        --topbar-height: 2rem;
    }
}

.topbar.is-hidden {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border-bottom-color: transparent;
}

.topbar-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    height: 100%;
    animation: topbar-marquee 40s linear infinite;
}

.topbar-marquee-track:hover {
    animation-play-state: paused;
}

.topbar-marquee-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0 1rem;
    list-style: none;
    margin: 0;
    height: 100%;
    white-space: nowrap;
}

.topbar-marquee-group li {
    display: flex;
    align-items: center;
    height: 100%;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    height: 100%;
    font-size: 11px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.2s ease;
}

.topbar-item:hover {
    color: #80fbaa;
}

.topbar-item-icon {
    font-size: 0.8125rem !important;
    line-height: 1 !important;
    color: #80fbaa;
}

.topbar-marquee-fade-left,
.topbar-marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1.25rem;
    z-index: 2;
    pointer-events: none;
}

.topbar-marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, #00305b, transparent);
}

.topbar-marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, #00305b, transparent);
}

.topbar-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.375rem;
    height: 1.375rem;
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.9);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.topbar-social-icon {
    font-size: 0.8125rem !important;
    line-height: 1 !important;
}

.topbar-social-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #80fbaa;
}

.topbar-social-link-light {
    background: #f2f4f7;
    color: #00305b;
}

.topbar-social-link-light:hover {
    background: #09477f;
    color: #fff;
}

/* Gallery page */
.gallery-page {
    background: #f7f9fc;
    overflow-x: clip;
}

.gallery-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #80fbaa;
}

.gallery-hero {
    background: linear-gradient(160deg, #00305b 0%, #09477f 55%, #0b4880 100%);
    padding: 2.75rem 1.25rem 3.25rem;
}

.gallery-hero-inner {
    max-width: 44rem;
    margin: 0 auto;
    text-align: center;
}

.gallery-hero-title {
    margin: 0.5rem 0 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    line-height: 1.15;
    font-weight: 700;
    color: #ffffff;
}

.gallery-hero-lead {
    margin: 0.875rem auto 0;
    max-width: 34rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.gallery-main {
    padding: 2rem 1.25rem 3.5rem;
}

.gallery-shell {
    max-width: 72rem;
    margin: 0 auto;
}

.gallery-tabs {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 1.75rem;
    padding: 0.375rem;
    border-radius: 9999px;
    background: #ffffff;
    border: 1px solid rgba(0, 48, 91, 0.08);
    box-shadow: 0 8px 24px rgba(0, 48, 91, 0.06);
}

.gallery-tab {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    padding: 0.625rem 1rem;
    border: none;
    border-radius: 9999px;
    background: transparent;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #424750;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-tab .material-symbols-outlined {
    font-size: 1.125rem !important;
}

.gallery-tab.is-active {
    color: #00305b;
    background: #eceef1;
    box-shadow: inset 0 0 0 1px rgba(0, 48, 91, 0.08);
}

.gallery-tab:focus-visible {
    outline: 2px solid #006d3a;
    outline-offset: 2px;
}

.gallery-panel[hidden] {
    display: none !important;
}

.gallery-panel-header {
    margin-bottom: 1.25rem;
}

.gallery-panel-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #00305b;
}

.gallery-panel-lead {
    margin: 0.5rem 0 0;
    max-width: 40rem;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #424750;
}

.gallery-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
}

.gallery-photo-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(0, 48, 91, 0.08);
    border-radius: 1rem;
    background: #ffffff;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 48, 91, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 48, 91, 0.1);
}

.gallery-photo-media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e8edf3;
}

.gallery-photo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-photo-card:hover .gallery-photo-media img {
    transform: scale(1.06);
}

.gallery-photo-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
}

.gallery-photo-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #00305b;
    line-height: 1.4;
}

.gallery-photo-zoom {
    flex-shrink: 0;
    font-size: 1.125rem !important;
    color: #006d3a;
}

.gallery-video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.gallery-video-card {
    overflow: hidden;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid rgba(0, 48, 91, 0.08);
    box-shadow: 0 8px 24px rgba(0, 48, 91, 0.06);
}

.gallery-video-embed-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0b1f33;
}

.gallery-video-card-short .gallery-video-embed-wrap {
    max-width: 18rem;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
}

.gallery-video-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.gallery-video-body {
    padding: 1rem 1.125rem 1.25rem;
}

.gallery-video-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #00305b;
}

.gallery-video-description {
    margin: 0.5rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.65;
    color: #424750;
}

.gallery-video-badge {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #006d3a;
    background: rgba(0, 109, 58, 0.1);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 40, 0.82);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-lightbox.is-open .gallery-lightbox-backdrop {
    opacity: 1;
}

.gallery-lightbox-stage {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: min(100%, 68rem);
    max-height: calc(100vh - 2.5rem);
}

.gallery-lightbox-dialog {
    flex: 1;
    min-width: 0;
    max-height: calc(100vh - 2.5rem);
    overflow: auto;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: scale(0.94) translateY(16px);
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-lightbox.is-open .gallery-lightbox-dialog {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.gallery-lightbox-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 9999px;
    background: rgba(0, 48, 91, 0.88);
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox-close:hover {
    background: #00305b;
    transform: scale(1.05);
}

.gallery-lightbox-nav {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.94);
    color: #00305b;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
    transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.35s ease;
}

.gallery-lightbox.is-open .gallery-lightbox-nav {
    opacity: 1;
    transform: scale(1);
}

.gallery-lightbox-nav:hover {
    background: #ffffff;
    transform: scale(1.06);
}

.gallery-lightbox-nav .material-symbols-outlined {
    font-size: 1.75rem !important;
}

.gallery-lightbox-figure {
    margin: 0;
}

.gallery-lightbox-image-wrap {
    overflow: hidden;
    background: #0b1f33;
}

.gallery-lightbox-image {
    display: block;
    width: 100%;
    max-height: calc(100vh - 10rem);
    object-fit: contain;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-lightbox-image.is-visible {
    opacity: 1;
    transform: scale(1) translateX(0);
}

.gallery-lightbox-image.is-enter-next {
    transform: translateX(28px) scale(0.98);
}

.gallery-lightbox-image.is-enter-prev {
    transform: translateX(-28px) scale(0.98);
}

.gallery-lightbox-caption {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.25rem 1.25rem;
}

.gallery-lightbox-counter {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #006d3a;
}

.gallery-lightbox-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #00305b;
}

@media (max-width: 639px) {
    .gallery-lightbox-stage {
        position: relative;
        flex-direction: column;
        gap: 0.625rem;
        width: 100%;
    }

    .gallery-lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%) scale(0.9);
        z-index: 3;
        width: 2.375rem;
        height: 2.375rem;
        background: rgba(0, 48, 91, 0.78);
        color: #ffffff;
    }

    .gallery-lightbox.is-open .gallery-lightbox-nav {
        transform: translateY(-50%) scale(1);
    }

    .gallery-lightbox-nav-prev {
        left: 0.5rem;
    }

    .gallery-lightbox-nav-next {
        right: 0.5rem;
    }

    .gallery-lightbox-dialog {
        width: 100%;
    }
}

@media (min-width: 640px) {
    .gallery-photo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }

    .gallery-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .gallery-hero {
        padding: 3.5rem 2rem 4rem;
    }

    .gallery-main {
        padding: 2.5rem 2rem 4.5rem;
    }

    .gallery-tabs {
        max-width: 28rem;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-panel-title {
        font-size: 1.625rem;
    }
}

@media (min-width: 1024px) {
    .gallery-photo-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .gallery-main {
        padding: 3rem 4rem 5rem;
    }
}

/* About page */
.about-page {
    background: #f7f9fc;
    overflow-x: clip;
}

.about-eyebrow,
.about-section-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #80fbaa;
}

.about-section-eyebrow-dark {
    color: #006d3a;
}

.about-hero {
    background: linear-gradient(160deg, #00305b 0%, #09477f 55%, #0b4880 100%);
    padding: 2.75rem 1.25rem 3.25rem;
}

.about-hero-inner {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.about-hero-title {
    margin: 0.5rem 0 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    line-height: 1.15;
    font-weight: 700;
    color: #ffffff;
}

.about-hero-lead {
    margin: 0.875rem auto 0;
    max-width: 36rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.about-hero-stat {
    padding: 0.875rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.06);
}

.about-hero-stat-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.about-hero-stat-label {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.about-hospital-section {
    padding: 2.75rem 1.25rem;
    background: #ffffff;
    overflow: hidden;
}

.about-hospital-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.about-section-title {
    margin: 0.375rem 0 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.375rem, 4.5vw, 2rem);
    line-height: 1.2;
    font-weight: 700;
    color: #00305b;
}

.about-section-title-dark {
    color: #00305b;
}

.about-section-text {
    margin: 0.75rem 0 0;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #424750;
}

.about-section-lead {
    margin: 0.625rem auto 0;
    max-width: 34rem;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #424750;
}

.about-hospital-highlights {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.about-hospital-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #191c1e;
}

.about-hospital-highlights .material-symbols-outlined {
    flex-shrink: 0;
    font-size: 1.125rem !important;
    color: #006d3a;
}

.about-hospital-media {
    position: relative;
}

.about-hospital-image-shell {
    position: relative;
    z-index: 1;
}

.about-hospital-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 1.125rem;
    box-shadow: 0 20px 48px rgba(0, 48, 91, 0.14);
}

.about-hospital-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    animation: aboutImageFloat 6s ease-in-out infinite;
}

.about-hospital-image-ring {
    position: absolute;
    inset: -0.75rem;
    border: 2px solid rgba(0, 109, 58, 0.22);
    border-radius: 1.375rem;
    animation: aboutRingPulse 4s ease-in-out infinite;
    pointer-events: none;
}

.about-hospital-badge {
    position: absolute;
    right: -0.5rem;
    bottom: -0.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 5.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.875rem;
    background: #006d3a;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 109, 58, 0.28);
    animation: aboutBadgeFloat 5s ease-in-out infinite;
}

.about-hospital-badge-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.about-hospital-badge-label {
    margin-top: 0.125rem;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.9;
}

.about-hospital-glow {
    position: absolute;
    border-radius: 9999px;
    filter: blur(48px);
    pointer-events: none;
}

.about-hospital-glow-primary {
    top: -1rem;
    left: -1rem;
    width: 6rem;
    height: 6rem;
    background: #09477f;
    opacity: 0.16;
    animation: aboutGlowPulse 4.5s ease-in-out infinite;
}

.about-hospital-glow-secondary {
    right: -1.5rem;
    bottom: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: #80fbaa;
    opacity: 0.22;
    animation: aboutGlowPulse 4.5s ease-in-out infinite reverse;
}

@keyframes aboutImageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes aboutRingPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.03); opacity: 1; }
}

@keyframes aboutBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes aboutGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.16; }
    50% { transform: scale(1.12); opacity: 0.28; }
}

.about-services-section {
    padding: 2.75rem 1.25rem;
    background: #f2f4f7;
    overflow: hidden;
}

.about-services-inner,
.about-team-inner {
    max-width: 80rem;
    margin: 0 auto;
}

.about-services-header,
.about-team-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.about-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
}

.about-service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.125rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid rgba(0, 48, 91, 0.08);
    box-shadow: 0 8px 24px rgba(0, 48, 91, 0.05);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 109, 58, 0.2);
    box-shadow: 0 14px 32px rgba(0, 48, 91, 0.1);
}

.about-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.75rem;
    border-radius: 0.75rem;
    background: rgba(0, 48, 91, 0.06);
    color: #00305b;
}

.about-service-icon .material-symbols-outlined {
    font-size: 1.25rem !important;
}

.about-service-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #00305b;
}

.about-service-text {
    margin: 0.5rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #424750;
    flex-grow: 1;
}

.about-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #006d3a;
}

.about-service-link .material-symbols-outlined {
    font-size: 1rem !important;
    transition: transform 0.2s ease;
}

.about-service-card:hover .about-service-link .material-symbols-outlined {
    transform: translateX(3px);
}

.about-team-section {
    padding: 2.75rem 1.25rem 3rem;
    background: #ffffff;
    overflow: hidden;
}

.about-team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.about-team-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid rgba(0, 48, 91, 0.08);
    box-shadow: 0 4px 16px rgba(0, 48, 91, 0.05);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.about-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 48, 91, 0.12);
}

.about-team-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #e8edf3;
}

.about-team-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-team-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #00305b 0%, #09477f 100%);
}

.about-team-photo-placeholder span {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.92);
}

.about-team-card:hover .about-team-photo {
    transform: scale(1.07);
}

.about-team-body {
    padding: 1rem 1.125rem 1.25rem;
    text-align: center;
}

.about-team-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #00305b;
    transition: color 0.25s ease;
}

.about-team-card:hover .about-team-name {
    color: #09477f;
}

.about-team-role {
    margin: 0.35rem 0 0;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #006d3a;
}

.about-cta-section {
    padding: 0 1.25rem 3rem;
    background: #ffffff;
}

.about-cta-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 80rem;
    margin: 0 auto;
    padding: 1.75rem 1.25rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #00305b 0%, #09477f 100%);
    box-shadow: 0 16px 40px rgba(0, 48, 91, 0.2);
}

.about-cta-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    line-height: 1.25;
    font-weight: 700;
    color: #ffffff;
}

.about-cta-text {
    margin: 0.5rem 0 0;
    max-width: 32rem;
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.75rem 1.125rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.about-cta-btn .material-symbols-outlined {
    font-size: 1.125rem !important;
}

.about-cta-btn-primary {
    background: #006d3a;
    color: #ffffff;
}

.about-cta-btn-primary:hover {
    background: #008847;
    transform: translateY(-1px);
}

.about-cta-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.about-cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

@media (min-width: 640px) {
    .about-hero-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .about-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .about-hero {
        padding: 3.5rem 2rem 4rem;
    }

    .about-hospital-section,
    .about-services-section,
    .about-team-section {
        padding: 3.5rem 2rem;
    }

    .about-hospital-inner {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .about-hospital-copy,
    .about-hospital-media {
        flex: 1;
        min-width: 0;
    }

    .about-services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }

    .about-cta-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .about-hero {
        padding: 4rem 4rem 4.5rem;
    }

    .about-hospital-section,
    .about-services-section,
    .about-team-section {
        padding: 4.5rem 4rem;
    }

    .about-cta-section {
        padding: 0 4rem 4.5rem;
    }

    .about-team-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .about-hero-lead,
    .about-section-text,
    .about-section-lead {
        font-size: 0.9375rem;
    }
}

@keyframes topbar-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .topbar-marquee-track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }

    .topbar-marquee-group[aria-hidden="true"] {
        display: none;
    }

    .topbar-marquee {
        overflow-x: auto;
    }

    .about-hospital-image,
    .about-hospital-image-ring,
    .about-hospital-glow,
    .about-hospital-badge,
    .about-team-photo {
        animation: none;
        transition: none;
    }

    .about-team-card:hover {
        transform: none;
    }

    .about-team-card:hover .about-team-photo {
        transform: none;
    }

    .gallery-lightbox,
    .gallery-lightbox-backdrop,
    .gallery-lightbox-dialog,
    .gallery-lightbox-image,
    .gallery-lightbox-nav {
        transition: none;
    }

    .gallery-lightbox-image.is-enter-next,
    .gallery-lightbox-image.is-enter-prev {
        transform: none;
    }

    [data-reveal],
    .faq-answer,
    .faq-icon,
    .faq-icon .material-symbols-outlined,
    .faq-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
