/* Index page styles */

.hero-intro {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 0;
    padding: 32px 0;
    background:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0),
        linear-gradient(90deg, #1a4980 0%, #2172c4 100%);
    background-size: 14px 14px, auto;
    border-radius: 0;
}

.hero-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
    gap: 32px;
}

.hero-kicker {
    margin: 0 0 30px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 3px 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    text-transform: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.hero-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.hero-intro h1,
.hero-intro h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    color: #ffffff;
    font-weight: 800;
}

.hero-intro-text > span {
    display: block;
    margin: 0;
    min-height: 1.1em;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    color: var(--accent);
    font-weight: 800;
}

.hero-intro-text h1 + span,
.hero-intro-text > span + h1,
.hero-intro-text > span + h2 {
    margin-top: 4px;
}

.hero-intro-text > p:not(.hero-kicker) {
    margin: 16px 0 0;
    font-size: 18px;
    color: #f7f9fc;
}

.hero-actions {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.hero-btn-primary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.hero-btn-primary:hover,
.hero-btn-primary:focus-visible {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #ffffff;
}

.hero-btn-ghost {
    background: var(--accent);
    color: #ffffff;
    border: 1px solid var(--accent);
}

.hero-btn-ghost:hover,
.hero-btn-ghost:focus-visible {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #ffffff;
}

.hero-intro-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    border-radius: 16px;
    box-shadow: none;
    filter: saturate(0.9) contrast(0.95) brightness(0.96);
}

.hero-intro-media {
    position: relative;
    margin-top: 14px;
    aspect-ratio: 1206 / 550;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 40px rgba(13, 42, 74, 0.32);
}

.hero-intro-media-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    gap: 16px;
}

.hero-intro-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 42, 74, 0.22) 0%, rgba(13, 42, 74, 0.08) 42%, rgba(13, 42, 74, 0) 72%);
    z-index: 2;
    pointer-events: none;
}

.hero-nameplate {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border-bottom-left-radius: 16px;
    border-top-right-radius: 16px;
    color: #0d2a4a;
    z-index: 3;
}

.hero-nameplate-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.hero-nameplate-text strong {
    font-size: 18px;
    font-weight: 800;
}

.hero-nameplate-text span {
    font-size: 14px;
    font-weight: 700;
    color: #1a4980;
}

.hero-nameplate-icon {
    position: relative;
    display: inline-flex;
    color: var(--accent);
    font-size: 22px;
    line-height: 1;
}

.hero-metrics {
    width: 100%;
    max-width: 520px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    text-align: center;
    margin-top: auto;
}

.hero-metric strong {
    display: block;
    font-size: 24px;
    line-height: 1.1;
    color: var(--accent);
}

.hero-metric span {
    display: block;
    margin-top: 3px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
}

.hero-intro-media img {
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .hero-intro-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-intro-media {
        margin-top: 0;
    }

    .hero-actions {
        margin-top: 18px;
        padding-top: 0;
    }

    .hero-metrics {
        max-width: 100%;
    }
}

.brands-strip {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 0;
    min-height: 150px;
    background: linear-gradient(180deg, #f4f9ff 0%, #edf5ff 100%);
    display: flex;
    align-items: center;
}

.brands-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 16px;
    width: 100%;
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: start;
    column-gap: 6px;
}

.brands-strip p {
    margin: 0;
    padding: 0;
    color: #374151;
    font-size: 15px;
    line-height: 1.45;
}

.brands-strip strong {
    color: #1a4980;
}

.brands-list {
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

@media (max-width: 900px) {
    .brands-strip-inner {
        grid-template-columns: 1fr;
        row-gap: 10px;
    }

    .brands-strip p {
        font-size: 14px;
    }

    .brands-list {
        justify-content: center;
    }
}

.brands-list li {
    flex: 0 0 calc((100% - (8 * 8px)) / 9);
    max-width: calc((100% - (8 * 8px)) / 9);
    padding: 5px 10px;
    border: 1px solid rgba(33, 114, 196, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    color: #1a4980;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.brands-list li:hover,
.brands-list li:focus-visible {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #ffffff;
}

@media (max-width: 1100px) {
    .brands-list li {
        flex-basis: calc((100% - (5 * 8px)) / 6);
        max-width: calc((100% - (5 * 8px)) / 6);
    }
}

@media (max-width: 760px) {
    .hero-intro {
        padding: 22px 0;
    }

    .hero-kicker {
        margin-bottom: 18px;
    }

    .hero-intro-text > p:not(.hero-kicker) {
        font-size: 16px;
    }

    .hero-btn {
        padding: 9px 13px;
        font-size: 14px;
    }

    .hero-nameplate {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border-bottom-left-radius: 16px;
    border-top-right-radius: 16px;
    color: #0d2a4a;
    z-index: 3;
}

    .hero-nameplate-text strong {
        font-size: 16px;
    }

    .hero-nameplate-text span {
        font-size: 13px;
    }

    .hero-nameplate-icon {
        font-size: 20px;
    }

    .hero-metric strong {
        font-size: 20px;
    }

    .hero-metric span {
        font-size: 13px;
    }

    .brands-strip {
        min-height: 124px;
    }

    .brands-strip-inner {
        padding: 10px 12px;
    }

    .brands-list li {
        flex-basis: calc((100% - (2 * 8px)) / 3);
        max-width: calc((100% - (2 * 8px)) / 3);
        font-size: 13px;
        padding: 5px 8px;
    }
}

.faq-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 42px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
}

.faq-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.faq-kicker {
    margin: 0;
    color: #1a4980;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.faq-inner h2 {
    margin: 6px 0 20px;
    color: #0d2a4a;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.1;
    font-weight: 800;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(33, 114, 196, 0.22);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(13, 42, 74, 0.08);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
    border-color: var(--accent-soft);
    box-shadow: 0 12px 28px rgba(13, 42, 74, 0.14);
}

.faq-item summary {
    list-style: none;
    position: relative;
    margin: 0;
    padding: 14px 44px 14px 16px;
    color: #0d2a4a;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
}

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

.faq-answer {
    overflow: hidden;
}

.faq-answer p {
    margin: 0;
    padding: 0 16px 16px;
    color: #374151;
    font-size: 17px;
    line-height: 1.55;
}

.contact-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 42px 0;
    background: #ffffff;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.contact-kicker {
    margin: 0;
    color: #1a4980;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-inner h2 {
    margin: 6px 0 8px;
    color: #0d2a4a;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.1;
    font-weight: 800;
}

.contact-intro {
    margin: 0 0 20px;
    color: #374151;
    font-size: 18px;
    max-width: 760px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 14px;
    align-items: stretch;
}

.contact-map-column {
    display: grid;
    grid-template-rows: 220px minmax(0, 1fr);
    gap: 0;
}

.contact-card {
    border: 1px solid rgba(33, 114, 196, 0.2);
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(13, 42, 74, 0.12);
}

.contact-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center 72%;
    display: block;
}

.contact-card-body {
    padding: 14px;
}

.contact-card-body h3 {
    margin: 0 0 10px;
    color: #0d2a4a;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
}

.contact-direct {
    margin: 0;
    display: grid;
    gap: 8px;
}

.contact-direct-map {
    border: 1px solid rgba(33, 114, 196, 0.22);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(13, 42, 74, 0.12);
    padding: 14px;
    height: 220px;
}

.contact-direct-title {
    margin: 0;
    color: #1a4980;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-hours-badge {
    margin: 2px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    padding: 3px 10px;
    border: 1px solid rgba(26, 73, 128, 0.28);
    background: rgba(33, 114, 196, 0.08);
    border-radius: 999px;
    color: #1a4980;
    font-size: 14px;
    font-weight: 700;
}

.contact-hours-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.contact-form {
    display: grid;
    gap: 10px;
}

.contact-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.contact-status {
    margin: 0 0 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
}

.contact-status-success {
    background: rgba(34, 197, 94, 0.12);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.contact-status-error {
    background: rgba(220, 38, 38, 0.1);
    color: #991b1b;
    border: 1px solid rgba(220, 38, 38, 0.35);
}

.contact-validation-summary {
    color: #b91c1c;
    font-size: 14px;
    font-weight: 700;
}

.contact-validation-summary ul {
    margin: 0;
    padding-left: 18px;
}

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

.contact-field {
    display: grid;
    gap: 5px;
    margin: 0;
}

.contact-field span {
    color: #1a4980;
    font-size: 14px;
    font-weight: 700;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid rgba(33, 114, 196, 0.3);
    border-radius: 10px;
    background: #f8fbff;
    color: #1c2b3a;
    font-size: 16px;
    padding: 10px 12px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.contact-validation {
    color: #b91c1c;
    font-size: 13px;
    font-weight: 700;
    min-height: 16px;
}

.contact-submit {
    border: 0;
    border-radius: 10px;
    padding: 11px 14px;
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 8px 18px rgba(13, 42, 74, 0.2);
}

.contact-line {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #374151;
    font-size: 17px;
    line-height: 1.45;
}

.contact-line + .contact-line {
    margin-top: 10px;
}

.contact-line i {
    margin-top: 4px;
    color: var(--accent);
}

.contact-line a {
    color: #1a4980;
    text-decoration: none;
    font-weight: 700;
}

.contact-line a:hover,
.contact-line a:focus-visible {
    color: var(--accent-dark);
    text-decoration: underline;
}

.contact-map-wrap {
    border: 1px solid rgba(33, 114, 196, 0.22);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(13, 42, 74, 0.12);
    min-height: 0;
    height: 100%;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 0;
    border: 0;
    display: block;
}

.gallery-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 42px 0;
    background:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0),
        linear-gradient(90deg, #1a4980 0%, #2172c4 100%);
    background-size: 14px 14px, auto;
}

.gallery-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.gallery-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.gallery-head-text {
    max-width: 760px;
}

.gallery-kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gallery-inner h2 {
    margin: 6px 0 8px;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.1;
    font-weight: 800;
}

.gallery-intro {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 760px;
}

.gallery-toggle-all {
    align-self: flex-start;
    margin-top: 24px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gallery-toggle-all:hover,
.gallery-toggle-all:focus-visible {
    background: rgba(245, 158, 11, 0.26);
    border-color: rgba(245, 158, 11, 0.9);
    transform: translateY(-1px);
}

.gallery-toggle-all[aria-expanded="true"] {
    background: rgba(13, 42, 74, 0.36);
    border-color: rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.86);
}

.gallery-carousel {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 18px 34px rgba(7, 25, 45, 0.34);
    background: #0d2a4a;
}

.gallery-stage {
    position: relative;
    height: auto;
    overflow: hidden;
}

.gallery-stage .gallery-carousel,
.gallery-stage .gallery-thumbs {
    height: auto;
    will-change: opacity, transform;
}

.gallery-carousel .carousel-item {
    aspect-ratio: 16 / 9;
}

.gallery-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(0.95);
}

.gallery-carousel .carousel-caption {
    right: auto;
    left: 22px;
    bottom: 22px;
    text-align: left;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(13, 42, 74, 0.52);
    backdrop-filter: blur(2px);
    max-width: min(640px, calc(100% - 44px));
    z-index: 2;
}

.gallery-carousel .carousel-caption h3 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
    font-weight: 800;
}

.gallery-carousel .carousel-caption p {
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 16px;
}

.gallery-carousel .carousel-control-prev,
.gallery-carousel .carousel-control-next {
    width: 52px;
}

.gallery-carousel .carousel-control-prev-icon,
.gallery-carousel .carousel-control-next-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(13, 42, 74, 0.56);
    background-size: 50% 50%;
}

.gallery-carousel .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.58);
    opacity: 1;
}

.gallery-carousel .carousel-indicators .active {
    background-color: var(--accent);
}

.gallery-thumbs {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    align-content: start;
    overflow-y: auto;
    padding: 2px;
}

.gallery-thumb {
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 0;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.88;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-thumb img {
    display: block;
    width: 100%;
    height: 88px;
    object-fit: cover;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
    opacity: 1;
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.8);
}

.gallery-thumb.is-active {
    opacity: 1;
    border-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.28);
}

.services-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 42px 0;
    background: #ffffff;
}

.services-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.services-kicker {
    margin: 0;
    color: #1a4980;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.services-inner h2 {
    margin: 6px 0 8px;
    color: #0d2a4a;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.1;
    font-weight: 800;
}

.services-intro {
    margin: 0 0 20px;
    color: #374151;
    font-size: 18px;
    max-width: 760px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.service-card {
    background: linear-gradient(135deg, #1a4980 0%, #2172c4 100%);
    border: 1px solid rgba(13, 42, 74, 0.12);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 12px 24px rgba(13, 42, 74, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 16px 30px rgba(13, 42, 74, 0.26);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 24px;
    line-height: 1;
    margin-bottom: 10px;
}

.service-card h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
}

.service-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 760px) {
    .gallery-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .gallery-toggle-all {
        margin-top: 0;
    }

    .gallery-section {
        padding: 30px 0;
    }

    .gallery-intro {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .gallery-carousel .carousel-item,
    .gallery-carousel .carousel-item img {
        height: auto;
    }

    .gallery-stage {
        height: auto;
    }

    .gallery-carousel .carousel-caption {
        left: 14px;
        bottom: 14px;
        max-width: calc(100% - 28px);
    }

    .gallery-carousel .carousel-caption h3 {
        font-size: 22px;
    }

    .gallery-carousel .carousel-caption p {
        font-size: 14px;
    }

    .gallery-carousel .carousel-control-prev,
    .gallery-carousel .carousel-control-next {
        width: 42px;
    }

    .gallery-carousel .carousel-control-prev-icon,
    .gallery-carousel .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .gallery-thumb img {
        height: 72px;
    }

    .contact-section {
        padding: 30px 0;
    }

    .contact-intro {
        font-size: 16px;
        margin-bottom: 14px;
    }

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

    .contact-map-column {
        grid-template-rows: auto auto;
    }

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

    .contact-photo {
        height: 180px;
    }

    .contact-card-body h3 {
        font-size: 22px;
    }

    .contact-line {
        font-size: 16px;
    }

    .contact-direct-map {
        height: auto;
    }

    .contact-map-wrap,
    .contact-map {
        height: auto;
        min-height: 320px;
    }

    .services-section {
        padding: 30px 0;
    }

    .services-intro {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 14px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .faq-section {
        padding: 30px 0;
    }

    .faq-inner h2 {
        margin-bottom: 14px;
    }

    .faq-item summary {
        font-size: 17px;
        padding: 12px 40px 12px 14px;
    }

    .faq-item p {
        padding: 0 14px 14px;
        font-size: 16px;
    }
}

@media (min-width: 761px) and (max-width: 1060px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

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






