/* Page template hero / breadcrumb (layouts using page.blade.php) */
.site-page-breadcrumb {
    min-height: 45vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    margin: 0;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.4);
}

.site-page-breadcrumb .title_area,
.site-page-breadcrumb .title_area * {
    color: #fff;
    text-align: center;
}

.site-page-breadcrumb .title_area h2 {
    font-size: 65px;
}

@media (max-width: 991px) {
    .site-page-breadcrumb {
        min-height: 36vh;
        background-attachment: scroll;
        background-position: center 38%;
    }

    .site-page-breadcrumb .title_area h2 {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    .site-page-breadcrumb {
        min-height: 32vh;
        background-position: center 34%;
    }

    .site-page-breadcrumb .title_area h2 {
        font-size: 34px;
        line-height: 1.15;
    }
}

@media (max-width: 375px) {
    .site-page-breadcrumb {
        min-height: 28vh;
    }

    .site-page-breadcrumb .title_area h2 {
        font-size: 28px;
        line-height: 1.12;
    }
}

.site-page-breadcrumb .title_area a {
    color: #fff;
    text-decoration: none;
}

.site-page-breadcrumb .title_area a:hover {
    text-decoration: underline;
}

/* CMS blocks */
.section {
    padding: 56px 0;
}

.section-shell {
    background: #fff;
    border: 1px solid rgba(19, 50, 96, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
    padding: 28px 26px;
}

.section-head {
    max-width: 780px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #0fa6db;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-title,
.page-title {
    color: #133063;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin: 0;
}

.section-copy {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 14px;
}

.cms-block-text .section-copy,
.cms-block-content-section .section-copy,
.cms-block-module-intro .section-copy {
    max-width: 860px;
}

.cms-block-split {
    display: grid;
    gap: 28px;
    align-items: center;
}

.cms-block-inline-image {
    margin: 0;
}

.cms-block-inline-image img {
    width: 100%;
    display: block;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.12);
    object-fit: cover;
}

.cms-rich-content,
.cms-rich-content p,
.cms-rich-content li {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.8;
}

.cms-rich-content h1,
.cms-rich-content h2,
.cms-rich-content h3,
.cms-rich-content h4 {
    color: #133063;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.cms-block-image figure {
    margin: 0;
}

.cms-block-image figure img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.12);
}

.cms-block-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.cms-block-gallery .gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(19, 50, 96, 0.08);
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
}

.cms-block-gallery .gallery-lightbox-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.cms-block-gallery .gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.cms-block-gallery .gallery-lightbox-trigger:hover img,
.cms-block-gallery .gallery-lightbox-trigger:focus-visible img {
    transform: scale(1.03);
    filter: saturate(1.05);
}

.gallery-lightbox-content {
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    background: #0b1120;
    color: #f8fafc;
}

.gallery-lightbox-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 15, 28, 0.96);
}

.gallery-lightbox-header .modal-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f8fafc;
}

.gallery-lightbox-header .btn-close {
    filter: invert(1) grayscale(1);
    opacity: 0.88;
}

.gallery-lightbox-body {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 70vh;
    padding: 24px;
    background:
        radial-gradient(circle at top, rgba(59, 130, 246, 0.12), transparent 42%),
        #020617;
}

.gallery-lightbox-figure {
    margin: 0;
    display: grid;
    gap: 14px;
    justify-items: center;
}

.gallery-lightbox-figure img {
    display: block;
    width: 100%;
    max-width: min(1000px, 100%);
    max-height: calc(70vh - 90px);
    border-radius: 22px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.36);
}

.gallery-lightbox-caption {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    color: rgba(226, 232, 240, 0.9);
}

.gallery-lightbox-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.14);
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gallery-lightbox-name {
    font-size: 0.92rem;
}

.gallery-lightbox-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.74);
    color: #f8fafc;
    font-size: 2rem;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(251, 191, 36, 0.68);
    background: rgba(30, 41, 59, 0.9);
}

.gallery-lightbox-nav:disabled {
    opacity: 0.45;
    cursor: default;
}

.gallery-lightbox-nav span {
    transform: translateY(-2px);
}

.cms-block-text-editorial {
    position: relative;
    padding: 28px 0;
}

.cms-block-text-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 44px;
    align-items: start;
}

.cms-block-text-grid.has-media {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
}

.cms-block-text-copy {
    max-width: 820px;
    padding-left: 18px;
    border-left: 3px solid rgba(15, 166, 219, 0.24);
}

.cms-block-text-copy .section-kicker {
    color: #0a7aa2;
    letter-spacing: 0.18em;
}

.cms-block-text-title {
    margin: 12px 0 0;
    color: #0f2448;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 800;
    max-width: 12ch;
}

.cms-block-text-body,
.cms-block-text-body p,
.cms-block-text-body li {
    color: #4f5d73;
    font-size: 17px;
    line-height: 2;
}

.cms-block-text-body > p:first-child {
    margin-top: 18px;
    color: #173865;
    font-size: 1.18rem;
    line-height: 1.9;
    font-weight: 500;
}

.cms-block-text-figure {
    margin: 0;
    position: relative;
    padding-top: 18px;
}

.cms-block-text-figure img {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    border-radius: 28px 28px 28px 64px;
    box-shadow: 0 28px 58px rgba(17, 24, 39, 0.16);
}

.content-feature-shell {
    border-radius: 34px;
    padding: 18px;
    background:
        linear-gradient(135deg, rgba(15, 166, 219, 0.14), rgba(255, 255, 255, 0) 40%),
        linear-gradient(180deg, #f7fbff, #ffffff);
    border: 1px solid rgba(19, 50, 96, 0.08);
    box-shadow: 0 28px 60px rgba(17, 24, 39, 0.08);
}

.content-feature-grid {
    display: grid;
    gap: 26px;
    align-items: stretch;
}

.content-feature-grid.has-media {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
}

.content-feature-copy {
    padding: 34px 34px 34px 20px;
}

.content-feature-intro {
    margin-top: 16px;
    color: #4e6585;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-feature-body,
.content-feature-body p,
.content-feature-body li {
    color: #5a6679;
}

.content-feature-media {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    min-height: 100%;
}

.content-feature-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.split-showcase-shell {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(15, 166, 219, 0.18), transparent 30%),
        linear-gradient(135deg, #10284f, #163a70 60%, #1d4d8a);
    box-shadow: 0 28px 60px rgba(17, 24, 39, 0.16);
}

.split-showcase-grid {
    display: grid;
    gap: 0;
    align-items: stretch;
}

.split-showcase-grid.has-media {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
}

.split-showcase-media {
    margin: 0;
    min-height: 100%;
}

.split-showcase-media img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    display: block;
}

.split-showcase-copy {
    padding: 44px 40px;
}

.split-showcase-copy .section-kicker {
    color: rgba(255, 255, 255, 0.72);
}

.split-showcase-copy .section-title,
.split-showcase-copy .cms-rich-content h1,
.split-showcase-copy .cms-rich-content h2,
.split-showcase-copy .cms-rich-content h3,
.split-showcase-copy .cms-rich-content h4 {
    color: #fff;
}

.split-showcase-intro {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.8;
}

.split-showcase-body,
.split-showcase-body p,
.split-showcase-body li {
    color: rgba(255, 255, 255, 0.78);
}

.cms-block-centered-head {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.cms-block-split-reverse-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.cms-block-split-reverse-layout .section-head {
    max-width: none;
}

.feature-grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.feature-grid-list-centered {
    grid-template-columns: repeat(2, minmax(240px, 320px));
    justify-content: center;
}

.feature-grid-list-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    margin-bottom: -4px;
    scrollbar-width: none;
    width: 100%;
}

.feature-grid-list-slider::-webkit-scrollbar {
    display: none;
}

.feature-grid-list-slider .feature-grid-card {
    flex: 0 0 calc((100% - 54px) / 4);
    width: calc((100% - 54px) / 4);
    scroll-snap-align: start;
}

.feature-grid-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    border-radius: 22px;
    border: 1px solid rgba(19, 50, 96, 0.08);
    background:
        radial-gradient(circle at top right, rgba(15, 166, 219, 0.22), transparent 40%),
        linear-gradient(180deg, #ffffff, #f6f8fc);
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.07);
    padding: 28px 24px;
}

.feature-grid-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(19, 48, 99, 0.08);
    color: #133063;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.feature-grid-card h3 {
    margin: 20px 0 0;
    color: #133063;
    font-size: 1.4rem;
    line-height: 1.15;
}

.feature-grid-card p {
    margin: 14px 0 0;
    color: #5e6b7d;
    font-size: 15px;
    line-height: 1.75;
}

.feature-grid-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    padding-bottom: 6px;
}

.feature-grid-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(19, 48, 99, 0.18);
    transition: transform .2s ease, background-color .2s ease, width .2s ease;
}

.feature-grid-dot.is-active {
    width: 28px;
    background: #0fa6db;
}

.faq-list {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid rgba(19, 50, 96, 0.08);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #fafbfd);
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.06);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: 22px 58px 22px 24px;
    color: #133063;
    font-size: 1.05rem;
    font-weight: 700;
}

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

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #0fa6db;
    font-size: 1.4rem;
    font-weight: 500;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-answer {
    padding: 0 24px 22px;
}

.faq-answer p {
    margin: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.testimonial-card {
    border-radius: 22px;
    border: 1px solid rgba(19, 50, 96, 0.08);
    background: linear-gradient(180deg, #133063, #19427f);
    color: #fff;
    box-shadow: 0 22px 44px rgba(19, 48, 99, 0.18);
    padding: 28px 24px;
}

.testimonial-quote {
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 1.05rem;
    line-height: 1.9;
}

.testimonial-meta {
    margin-top: 22px;
    display: grid;
    gap: 4px;
}

.testimonial-meta strong {
    color: #fff;
    font-size: 0.95rem;
}

.testimonial-meta span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stats-band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.stats-band-card {
    display: grid;
    gap: 10px;
    align-content: start;
    min-height: 170px;
    border-radius: 20px;
    padding: 26px 22px;
    background:
        linear-gradient(160deg, rgba(15, 166, 219, 0.12), rgba(19, 48, 99, 0.06)),
        #ffffff;
    border: 1px solid rgba(19, 50, 96, 0.08);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.08);
}

.stats-band-card strong {
    color: #133063;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.stats-band-card span {
    color: #55657d;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 600;
}

.stats-band-panel {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 34px 28px;
    background:
        radial-gradient(circle at top right, rgba(15, 166, 219, 0.2), transparent 28%),
        linear-gradient(135deg, #10284f, #15396c);
    box-shadow: 0 28px 60px rgba(17, 24, 39, 0.14);
}

.stats-band-head .section-title,
.stats-band-head .section-copy {
    color: #fff;
}

.stats-band-head .section-copy {
    color: rgba(255, 255, 255, 0.78);
}

.storage-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.storage-pricing-card {
    border-radius: 20px;
    border: 1px solid rgba(19, 50, 96, 0.08);
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
    padding: 24px 22px;
    display: grid;
    gap: 10px;
    align-content: start;
}

.storage-pricing-size {
    margin: 0;
    color: #133063;
    font-size: 1.25rem;
    font-weight: 700;
}

.storage-pricing-availability {
    margin: 0;
    color: #5f6f86;
    font-size: 0.95rem;
}

.storage-pricing-price {
    margin: 2px 0 0;
    color: #0fa6db;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.storage-pricing-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 44px;
    margin-top: 10px;
    border-radius: 999px;
    padding: 0 18px;
    background: #133063;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease;
}

.storage-pricing-link:hover {
    background: #0fa6db;
    color: #fff;
    transform: translateY(-1px);
}

.storage-about-feature-link {
    margin-top: auto;
    padding-top: 14px;
    border: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    background: transparent;
    color: #133063;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: none;
    appearance: none;
    box-shadow: none;
    text-align: left;
    cursor: pointer;
    transition: color .2s ease;
}

.storage-about-feature-link:hover {
    background: transparent;
    color: #0fa6db;
    transform: none;
}

.storage-about-feature-card {
    min-height: 0;
}

.storage-about-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(19, 48, 99, 0.08);
    color: #133063;
    font-size: 1.5rem;
}

.storage-about-feature-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.cms-block-cta {
    padding: 86px 0;
    background-color: #133063;
}

.cms-block-cta .section-head {
    max-width: 760px;
    margin: 0 auto;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: clamp(32px, 5vw, 54px);
    background: linear-gradient(135deg, rgba(11, 26, 53, 0.76), rgba(15, 36, 69, 0.52));
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.18);
}

.cta-panel::after {
    content: '';
    position: absolute;
    inset: auto -10% -35% auto;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(15, 166, 219, 0.32), transparent 68%);
    pointer-events: none;
}

.cta-panel-head {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-panel-actions {
    position: relative;
    z-index: 1;
}

.cms-block-hero.page-header {
    position: relative;
    min-height: 430px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cms-block-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.58));
}

.cms-block-hero .page-header-content {
    position: relative;
    z-index: 1;
    width: min(100%, 980px);
    margin: 0 auto;
    text-align: center;
    padding: 0 16px;
}

.cms-block-hero .breadcrumb {
    margin: 0 0 12px;
}

.cms-block-hero .breadcrumb .current {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cms-block-hero .page-title {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.cms-block-hero .section-copy {
    color: rgba(255, 255, 255, 0.9);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 8px;
    padding: 14px 24px;
    text-decoration: none;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: #0fa6db;
    color: #fff;
    box-shadow: 0 14px 28px rgba(15, 166, 219, 0.22);
}

.btn-primary:hover {
    background: #133063;
    color: #fff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.94);
    color: #133063;
    box-shadow: 0 14px 28px rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
    background: #fff;
    color: #111827;
}

.cms-block-module-unknown .section-copy {
    margin-top: 0;
}

.form-toast-stack {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1200;
    display: flex;
    width: min(380px, calc(100vw - 32px));
    flex-direction: column;
    gap: 12px;
}

.form-errors,
.form-success,
.reserve-alert {
    margin: 0;
    padding: 16px 18px;
    border: 1px solid rgba(18, 50, 96, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(18, 50, 96, 0.12);
    backdrop-filter: blur(14px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.form-errors[data-state='closing'],
.form-success[data-state='closing'],
.reserve-alert[data-state='closing'] {
    opacity: 0;
    transform: translateY(-8px);
}

.form-errors {
    background: linear-gradient(135deg, rgba(255, 241, 242, 0.98), rgba(255, 255, 255, 0.98));
    color: #9f1239;
}

.form-success {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.98), rgba(255, 255, 255, 0.98));
    color: #166534;
}

.form-toast-body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.form-toast-copy {
    min-width: 0;
}

.form-toast-title {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 700;
}

.form-toast-message {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.form-toast-close {
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 22px;
    line-height: 1;
    padding: 0;
    opacity: 0.72;
}

.form-toast-close:hover {
    opacity: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field label {
    display: block;
    margin-bottom: 8px;
    color: #667085;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.field input,
.field textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(19, 50, 96, 0.12);
    background: #fff;
    color: #111827;
    padding: 14px 16px;
    font-size: 15px;
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: #0fa6db;
    box-shadow: 0 0 0 4px rgba(15, 166, 219, 0.12);
}

.invalid-feedback {
    display: block;
    margin-top: 8px;
    color: #b42318;
    font-size: 13px;
}

/* About Us page */
section.inner_page .content_box {
    display: flex;
    background-color: #fff;
    border: 3px solid #fff;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
    padding: 24px;
}
section.inner_page .content_box .content_cnt_full {
    width: 60%;
    padding-right: 30px;
}
section.inner_page .content_box .content_cnt_full h1,
section.inner_page .content_box .content_cnt_full h2,
section.inner_page .content_box .content_cnt_full h3,
section.inner_page .content_box .content_cnt_full h4 {
    color: var(--sm-navy);
    letter-spacing: -0.03em;
}
section.inner_page .content_box .content_cnt_full p,
section.inner_page .content_box .content_cnt_full li {
    color: var(--sm-text-muted);
    font-size: 15px;
    line-height: 1.75;
}
section.inner_page .content_box .content_image {
    width: 40%;
}
section.inner_page .content_box .content_image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
}
@media (min-width: 992px) {
    .cms-block-split {
        grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.95fr);
    }
}

@media (max-width: 1199px) {
    section.inner_page .content_box {
        display: block;
        padding: 20px;
    }
    section.inner_page .content_box .content_cnt_full,
    section.inner_page .content_box .content_image {
        width: 100%;
        padding: 0;
    }
}

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

    .section-shell {
        padding: 22px 18px;
    }

    .cms-block-gallery .gallery-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .cms-block-split {
        grid-template-columns: 1fr;
    }

    .cms-block-gallery .gallery-item img {
        height: 240px;
    }

    .gallery-lightbox-body {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 18px;
    }

    .gallery-lightbox-figure img {
        max-height: 62vh;
    }

    .gallery-lightbox-nav {
        position: static;
        width: 46px;
        height: 46px;
        justify-self: center;
    }

    .cms-block-text-grid.has-media,
    .content-feature-grid.has-media,
    .split-showcase-grid.has-media {
        grid-template-columns: 1fr;
    }

    .cms-block-text-copy {
        padding-left: 0;
        border-left: 0;
    }

    .cms-block-text-title {
        max-width: none;
    }

    .content-feature-copy,
    .split-showcase-copy {
        padding: 28px 22px;
    }

    .content-feature-media img,
    .split-showcase-media img {
        min-height: 280px;
    }

    .feature-grid-card,
    .testimonial-card,
    .stats-band-card {
        min-height: 0;
    }

    .feature-grid-list-centered {
        grid-template-columns: 1fr;
    }

    .feature-grid-list-slider {
        gap: 18px;
    }

    .feature-grid-list-slider .feature-grid-card {
        flex-basis: calc((100% - 18px) / 2);
        width: calc((100% - 18px) / 2);
    }
}

@media (max-width: 767.98px) {
    .gallery-lightbox-body {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 14px;
    }

    .gallery-lightbox-figure {
        grid-row: 1;
        grid-column: 1 / -1;
    }

    .gallery-lightbox-figure img {
        border-radius: 18px;
        max-height: 54vh;
    }

    .gallery-lightbox-nav {
        grid-row: 2;
        width: 44px;
        height: 44px;
    }

    .gallery-lightbox-nav-prev {
        grid-column: 1;
        justify-self: end;
    }

    .gallery-lightbox-nav-next {
        grid-column: 2;
        justify-self: start;
    }

    .gallery-lightbox-caption {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 767px) {
    .feature-grid-list-slider .feature-grid-card {
        flex-basis: 100%;
        width: 100%;
    }
}

/* Reserve page — match reference layout & palette */
#reserve_page {
    background: #eceff2;
}

.reserve-form {
    --reserve-primary: #00a0d2;
    --reserve-primary-hover: #0088b5;
    --reserve-border: #b8dce8;
    --reserve-surface: #fafbfc;
    --reserve-label: #6b7280;
    --reserve-text: #374151;
    --reserve-input-border: #d1d5db;
    --reserve-sig-black: #000000;

    max-width: 1040px;
    margin: 0 auto;
    background: #fbf8f8;
    border: 1px solid var(--reserve-border);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 18px 42px rgba(20, 54, 104, 0.09);
}

.reserve-form-inner {
    background: var(--reserve-surface);
    border-radius: 11px;
    margin: 10px;
    padding: 28px 26px 32px;
}

.reserve-req {
    color: #dc2626;
    font-weight: 700;
    margin-left: 2px;
}

.reserve-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--reserve-label);
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.reserve-input.form-control {
    border: 1px solid var(--reserve-input-border);
    border-radius: 5px;
    font-size: 15px;
    padding: 9px 12px;
    background: #fff;
    color: var(--reserve-text);
}

.reserve-input.form-control:focus {
    border-color: var(--reserve-primary);
    box-shadow: 0 0 0 0.12rem rgba(0, 160, 210, 0.2);
}

textarea.reserve-comments {
    min-height: 168px;
    resize: vertical;
    line-height: 1.45;
}

.reserve-options-row {
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.reserve-fieldset {
    border: 0;
    padding: 0;
    margin: 0;
    min-height: 100%;
}

.reserve-legend {
    font-size: 13px;
    font-weight: 600;
    color: var(--reserve-label);
    margin-bottom: 12px;
    padding: 0;
    float: none;
    width: 100%;
    line-height: 1.3;
}

.reserve-radio-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reserve-radio {
    font-size: 15px;
    color: var(--reserve-text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-weight: 400;
}

.reserve-radio input {
    width: 17px;
    height: 17px;
    accent-color: var(--reserve-primary);
    flex-shrink: 0;
}

.reserve-radio.is-disabled,
.reserve-radio.is-disabled input {
    cursor: not-allowed;
}

.reserve-radio.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.reserve-total-terms-row {
    margin-top: 8px;
}

.reserve-total-line {
    font-size: 17px;
    font-weight: 700;
    color: #374151;
    margin: 0 0 14px;
    line-height: 1.35;
}

.reserve-total-line span {
    color: #1f2937;
}

.reserve-total-terms-row .reserve-terms-block {
    margin-top: 0;
}

.reserve-terms-block {
    margin-top: 26px;
}

.reserve-terms-btn {
    background: var(--reserve-primary);
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 4px;
    border: 0;
    letter-spacing: 0.02em;
}

.reserve-terms-btn:hover {
    background: var(--reserve-primary-hover);
    color: #fff !important;
}

.reserve-agree-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    max-width: 100%;
}

.reserve-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--reserve-primary);
    border-radius: 3px;
    cursor: pointer;
}

.reserve-check-label {
    font-size: 14px;
    color: var(--reserve-text);
    line-height: 1.55;
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

.reserve-signature-row {
    margin-top: 22px;
}

.reserve-signature-wrap {
    max-width: 100%;
    width: 100%;
    border: 1px solid var(--reserve-input-border);
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
}

.reserve-signature-canvas {
    display: block;
    width: 100%;
    height: 200px;
    touch-action: none;
    cursor: crosshair;
}

.reserve-sig-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.reserve-sig-btn {
    background: var(--reserve-sig-black);
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    border: 0;
    text-transform: none;
}

.reserve-sig-btn:hover {
    background: #222;
    color: #fff !important;
}

.reserve-date-readonly {
    background: #e5e7eb !important;
    color: #4b5563 !important;
    border: 1px solid #d1d5db !important;
    font-size: 15px;
}

.reserve-recaptcha-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 28px;
    margin-bottom: 8px;
}

.reserve-recaptcha-v3-note {
    max-width: 420px;
    margin: 0;
    font-size: 11px;
    line-height: 1.45;
    color: #6b7280;
    text-align: center;
}

.reserve-recaptcha-v3-note a {
    color: #00a0d2;
    text-decoration: underline;
}

.reserve-recaptcha-mock {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 420px;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d8e4ef;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
    color: #4b5563;
}

.reserve-recaptcha-mock-active {
    border-color: rgba(15, 166, 219, 0.22);
}

.reserve-recaptcha-mock-ready {
    border-color: rgba(20, 54, 104, 0.12);
}

.reserve-recaptcha-mock-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(15, 166, 219, 0.10);
    color: #0f7daf;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.reserve-recaptcha-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.reserve-recaptcha-mock-text {
    font-weight: 700;
    color: #143668;
    line-height: 1.2;
}

.reserve-recaptcha-mock-subtext {
    font-size: 12px;
    line-height: 1.4;
    color: #667085;
}

.reserve-submit-wrap {
    text-align: center;
    margin-top: 22px;
}

.reserve-submit-btn {
    background: var(--reserve-primary);
    color: #fff !important;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.06em;
    padding: 14px 36px;
    border-radius: 4px;
    border: 0;
    min-width: min(100%, 420px);
    width: 100%;
    max-width: 480px;
}

.reserve-submit-btn:hover {
    background: var(--reserve-primary-hover);
    color: #fff !important;
}

#contact-form .contact-submit-wrap {
    text-align: right;
}

#contact-form .contact-submit-btn {
    min-width: 140px;
    width: auto;
    max-width: none;
    padding: 12px 34px;
}

#contact-form .contact-recaptcha-wrap {
    align-items: flex-start;
    text-align: left;
}

@media (max-width: 767px) {
    #contact-form .contact-submit-wrap {
        text-align: center;
    }

    #contact-form .contact-submit-btn {
        width: 100%;
    }
}

.reserve-alert {
    max-width: none;
}

@media (max-width: 767px) {
    .form-toast-stack {
        top: 16px;
        right: 16px;
        left: 16px;
        width: auto;
    }
}

@media (max-width: 991px) {
    .reserve-form-inner {
        padding: 22px 16px 26px;
    }
}
