/*
 * Home page sections previously inlined in Views/Home/Index.cshtml:
 *  - .home-feature-story  — alternating feature panels (Admin → Home Feature Sections)
 *  - .home-quote-section  — "Ask our manager a question" panel with the embedded quote form
 */

.home-feature-story {
    background: #f5f5f2;
    overflow: hidden;
    padding: 86px 0 92px;
}

.home-feature-list {
    display: grid;
    gap: 34px;
}

.home-feature-panel {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .08);
    display: grid;
    grid-template-areas: "media copy";
    grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
    min-height: 420px;
    overflow: hidden;
}

.home-feature-panel--reverse {
    grid-template-areas: "copy media";
    grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
}

.home-feature-panel--dark {
    background: #181a19;
}

.home-feature-media {
    background: #151716;
    grid-area: media;
    min-height: 420px;
    overflow: hidden;
    position: relative;
}

.home-feature-copy {
    display: flex;
    flex-direction: column;
    grid-area: copy;
    justify-content: center;
    padding: 52px 56px;
}

.home-feature-label {
    color: #d4a84b;
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.home-feature-copy h3 {
    color: #171717;
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.12;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.home-feature-copy p {
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.85;
    margin: 0;
}

.home-feature-panel--dark .home-feature-copy h3 {
    color: #fff;
}

.home-feature-panel--dark .home-feature-copy p {
    color: rgba(255, 255, 255, .72);
}

.home-feature-cta {
    align-items: center;
    align-self: flex-start;
    background: #171717;
    border: 2px solid #171717;
    border-radius: 999px;
    color: #fff !important;
    display: inline-flex;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1.2;
    margin-top: 28px;
    min-height: 48px;
    padding: 0 28px;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.home-feature-panel--dark .home-feature-cta {
    background: #e7a920;
    border-color: #e7a920;
    color: #171717 !important;
}

.home-feature-cta:hover,
.home-feature-cta:focus {
    background: #e7a920;
    border-color: #e7a920;
    color: #171717 !important;
    text-decoration: none !important;
}

.home-feature-panel--dark .home-feature-cta:hover,
.home-feature-panel--dark .home-feature-cta:focus {
    background: #fff;
    border-color: #fff;
}

.home-feature-scroll-gallery,
.home-feature-scroll-gallery__item {
    height: 100%;
}

.home-feature-scroll-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-color: #e7a920 rgba(255, 255, 255, .18);
    scrollbar-width: thin;
}

.home-feature-scroll-gallery::-webkit-scrollbar {
    height: 8px;
}

.home-feature-scroll-gallery::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .18);
}

.home-feature-scroll-gallery::-webkit-scrollbar-thumb {
    background: #e7a920;
}

.home-feature-scroll-gallery__item {
    flex: 0 0 100%;
    margin: 0;
    scroll-snap-align: start;
}

.home-feature-scroll-gallery img,
.home-feature-static-image img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center 62%;
    width: 100%;
}

.home-feature-static-image {
    height: 100%;
}

.home-feature-media-placeholder {
    background:
        linear-gradient(135deg, rgba(231, 169, 32, .28), rgba(24, 26, 25, .08)),
        #181a19;
    height: 100%;
}

.home-quote-section {
    background: #f5f5f2;
    overflow: hidden;
    padding: 92px 0;
}

.home-quote-panel {
    background: #181a19;
    border-radius: 4px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .16);
    color: #fff;
    overflow: hidden;
}

.home-quote-media {
    background: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.home-quote-media img {
    display: block;
    height: auto;
    width: 100%;
}

.home-quote-body {
    align-items: start;
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, .78fr) minmax(320px, 1fr);
    padding: 52px 56px 58px;
}

.home-quote-copy {
    max-width: 450px;
}

.home-quote-label {
    color: #d4a84b;
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.home-quote-copy h2 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.12;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.home-quote-copy p {
    color: rgba(255, 255, 255, .72);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.85;
    margin: 0;
}

.home-quote-form-shell {
    min-width: 0;
}

.home-quote-form-shell .quote-form {
    gap: 18px;
}

/* Testimonials (Admin → Testimonials): dark quote cards in an ArmoSlider carousel. */
.home-testimonials {
    background: #fff;
    overflow: hidden;
    padding: 86px 0 92px;
}

.home-testimonials .main-heading {
    margin-bottom: 42px;
}

.home-testimonial-card {
    background: #181a19;
    border-radius: 4px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .10);
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    min-height: 240px;
    padding: 42px 44px 38px;
    position: relative;
}

.home-testimonial-card::before {
    color: #d4a84b;
    content: "\201C";
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 64px;
    left: 34px;
    line-height: 1;
    opacity: .85;
    position: absolute;
    top: 18px;
}

.home-testimonial-quote {
    border: 0;
    color: rgba(255, 255, 255, .86);
    flex: 1 1 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: normal;
    line-height: 1.85;
    margin: 0 0 26px;
    padding: 18px 0 0;
}

.home-testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 18px;
}

.home-testimonial-author strong {
    color: #e7a920;
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.home-testimonial-author span {
    color: rgba(255, 255, 255, .55);
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    margin-top: 4px;
}

.home-testimonials-slider .ak-slider__slide {
    height: auto;
}

@media (max-width: 991px) {
    .home-feature-story {
        padding: 72px 0;
    }

    .home-feature-panel,
    .home-feature-panel--reverse {
        display: block;
    }

    .home-feature-media {
        min-height: 320px;
    }

    .home-feature-copy {
        padding: 40px 34px;
    }

    .home-quote-section {
        padding: 72px 0;
    }

    .home-quote-body {
        gap: 36px;
        grid-template-columns: 1fr;
        padding: 42px;
    }

    .home-quote-copy {
        max-width: 680px;
    }
}

@media (max-width: 768px) {
    .home-feature-story {
        padding: 58px 0 62px;
    }

    .home-testimonials {
        padding: 56px 0 60px;
    }

    .home-testimonial-card {
        min-height: 0;
        padding: 34px 26px 30px;
    }

    .home-testimonial-quote {
        font-size: 14px;
        line-height: 1.75;
    }

    .home-feature-list {
        gap: 26px;
    }

    .home-feature-media {
        min-height: 270px;
    }

    .home-feature-copy {
        padding: 34px 26px;
    }

    .home-feature-copy h3 {
        font-size: 26px;
    }

    .home-feature-copy p {
        font-size: 14px;
        line-height: 1.75;
    }

    .home-quote-section {
        padding: 58px 0 62px;
    }

    .home-quote-body {
        padding: 34px 26px;
    }

    .home-quote-copy h2 {
        font-size: 27px;
    }

    .home-quote-copy p {
        font-size: 14px;
        line-height: 1.75;
    }
}
