/* ── Reset & Base ─────────────────────────────────── */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #000;
    background: #fff;
}

body {
    min-height: 100dvh;
    background: #f8f8f8;
}

a {
    color: inherit;
    text-decoration: none;
}

a.text-link {
    text-decoration: underline;
}

ul, ol {
    padding-left: 1.5em;
    margin-bottom: 12px;
}

/* ── Banner ──────────────────────────────────────── */

.banner {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 24px;
    height: 72px;
    gap: 32px;
}

.banner-logo img {
    height: 36px;
    display: block;
}

.banner-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

/* ── Nav links & dropdowns ───────────────────────── */

.nav-link,
.nav-dropdown-toggle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border: none;
    background: none;
    cursor: pointer;
    color: #000;
    border-radius: 6px;
    transition: background 0.15s;
}

.nav-link:hover,
.nav-dropdown-toggle:hover {
    background: #f5f5f5;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-header {
    display: flex;
    align-items: center;
}

.nav-dropdown-header .nav-dropdown-toggle {
    padding-right: 2px;
}

.nav-dropdown-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #333;
    transition: transform 0.3s;
    pointer-events: none;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    min-width: 220px;
    padding: 8px 0;
    z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 400;
    color: #333;
    transition: background 0.15s;
}

.nav-dropdown-menu a:hover {
    background: #f5f5f5;
    color: #962D3E;
}

/* ── Contact button ──────────────────────────────── */

.banner-contact-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 6px;
    background: #962D3E;
    color: #fff;
    white-space: nowrap;
    transition: background 0.15s;
}

.banner-contact-btn:hover {
    background: #7a2533;
}

/* ── Layout ──────────────────────────────────────── */

.page {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

.main-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 48px;
    width: 100%;
}

/* ── Hero (all pages) ─────────────────────────────── */

.hero {
    background: radial-gradient(circle, #FFDADA, #fff);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    overflow: hidden;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px;
    display: flex;
    align-items: center;
}

.hero-text {
    text-align: left;
    flex: 1;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #962D3E;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero p{
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 28px;
}

.hero p b,
.hero p strong {
    color: #962D3E;
}

/* ── Hero (home page) ────────────────────────────── */

.hero-home .hero-inner {
    background: url('../images/home/homebanner.webp') right center / contain no-repeat;
    min-height: 400px;
}

.hero-home .hero-text {
    max-width: 50%;
}

.hero-stores {
    display: grid;
    grid-template-columns: auto auto;
    gap: 12px;
    width: fit-content;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    flex-shrink: 1;
    width: 25%;
    min-width: 20%;
}

.hero-image img {
    width: 100%;
    display: block;
}

.hero-stores a {
    display: block;
}

.hero-stores img {
    height: 40px;
    display: block;
}

/* ── Buttons ─────────────────────────────────────── */

.btn-primary {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    background: #962D3E;
    color: #fff;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-primary:hover {
    background: #7a2533;
}

.btn-outline {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 6px;
    background: #fff;
    color: #000;
    border: none;
    transition: background 0.15s;
}

.btn-outline:hover {
    background: #f0f0f0;
}

/* ── Section ─────────────────────────────────────── */

.section-view {
    padding: 48px 40px;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    margin-top: 32px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 36px;
}

.section-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 16px;
}

/* ── Case Study ──────────────────────────────────── */

.case-study {
    display: flex;
    align-items: center;
    gap: 48px;
    text-align: left;
}

.case-study-image {
    flex-shrink: 0;
    width: 280px;
    height: 140px;
    display: flex;
    align-items: center;
}

.case-study-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.case-study-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ── Subject Descriptions ─────────────────────────── */

.subject-descriptions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
}

.subject-description {
    text-align: center;
}

.subject-name {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #962D3E;
    margin-bottom: 12px;
}

a.subject-name:hover {
    opacity: 0.8;
}

.subject-subitems {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* ── Feature Cards ────────────────────────────────── */

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

/* ── Feature Card ─────────────────────────────────── */

.feature-card {
    text-align: center;
    width: calc((100% - 2 * 32px) / 3);
}

.feature-card-image {
    width: 100%;
    aspect-ratio: 1.563;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .feature-card {
        width: 100%;
    }
}

/* ── Image Links ────────────────────────────────── */

.image-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.image-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.15s;
}

.image-link:hover {
    opacity: 0.8;
}

.image-link-image {
    width: 120px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
}

.image-link-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* ── Video Player ────────────────────────────────── */

.video-player {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.video-element {
    width: 100%;
    display: block;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.video-player.playing .video-play-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-play-icon {
    width: 80px;
    height: 80px;
}

/* ── Carousel Slide Content ─────────────────────── */

.carousel-slide {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    padding: 0 72px;
}

.carousel-image {
    flex-shrink: 0;
    width: 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-content {
    flex: 1;
}

.carousel-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
}

.carousel-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.carousel-role {
    font-size: 0.875rem;
    color: #962D3E;
}

@media (max-width: 768px) {
    .carousel-slide {
        flex-direction: column;
        text-align: center;
        padding: 0 24px;
        gap: 20px;
    }
}

/* ── FAQ ─────────────────────────────────────────── */

.faq-section {
    display: flex;
    gap: 48px;
    text-align: left;
}

.faq-section-title {
    flex-shrink: 0;
    width: 200px;
    border-top: 3px solid #962D3E;
    padding-top: 24px;
}

.faq-section-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #962D3E;
}

.faq {
    flex: 1;
    border-top: 3px solid #333;
    padding-top: 24px;
    text-align: left;
}

.faq-item + .faq-item {
    border-top: none;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    padding: 10px 0;
    cursor: pointer;
    list-style: none;
}

.faq-question::before {
    content: '+';
    display: inline-block;
    width: 1.5em;
    font-size: 1.25rem;
    font-weight: 700;
    color: #962D3E;
}

.faq-item[open] .faq-question::before {
    content: '\2013';
}

.faq-answer {
    padding: 0 0 0 1.5em;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer li {
    margin-bottom: 4px;
}

.faq-answer a {
    color: #962D3E;
}

/* ── Contact Form ────────────────────────────────── */

.contact-page {
    background: #fff;
    border-radius: 12px;
    margin-top: 32px;
    padding: 48px 40px;
    text-align: center;
}

.contact-divider {
    border-top: 1px solid #e0e0e0;
    margin: 36px auto;
    max-width: 720px;
}

.contact-meeting-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-form {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.contact-form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form-row > * {
    flex: 1;
}

.contact-input,
.contact-textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    color: #333;
    outline: none;
    transition: border-color 0.15s;
    width: 100%;
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: #962D3E;
}

.contact-textarea {
    margin-bottom: 16px;
    resize: vertical;
}

.contact-success {
    font-size: 1.1rem;
    color: #2e7d32;
    margin-top: 24px;
}

.contact-error {
    font-size: 0.95rem;
    color: #962D3E;
    margin-bottom: 16px;
}

.contact-form-submit {
    text-align: center;
}

/* ── Image Row ───────────────────────────────────── */

.image-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.image-row-item {
    height: 80px;
    object-fit: contain;
}

/* ── Tabbed Content ──────────────────────────────── */

.tabbed-content {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
}

.tabbed-content-tabs {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 300px;
    border-right: 1px solid #e0e0e0;
}

.tabbed-content-tab {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 16px 24px;
    border: none;
    background: none;
    color: #333;
    cursor: pointer;
    text-align: left;
    border-left: 3px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}

.tabbed-content-tab:hover {
    color: #962D3E;
}

.tabbed-content-tab.active {
    color: #962D3E;
    font-weight: 700;
    border-left-color: #962D3E;
}

.tabbed-content-panel {
    flex: 1;
    padding: 8px 0 8px 40px;
    display: none;
}

.tabbed-content-panel.active {
    display: block;
}

/* ── Footer ──────────────────────────────────────── */

.footer {
    background: #862D3E;
    color: #fff;
    width: 100%;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 28px;
    display: flex;
    gap: 64px;
}

.footer-about {
    flex: 1;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-description {
    font-size: 0.8rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s;
}

.footer-social a:hover {
    opacity: 0.8;
}

.footer-social img {
    width: 24px;
    height: 24px;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-links {
    flex-shrink: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 2px;
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: #fff;
}

/* ── Splide Overrides ────────────────────────────── */

.splide .splide__pagination {
    position: relative;
    bottom: auto;
    margin-top: 16px;
}

.splide .splide__pagination__page.is-active {
    background: #888;
}

@media (max-width: 768px) {
    .splide .splide__arrow--prev {
        left: 0;
    }

    .splide .splide__arrow--next {
        right: 0;
    }
}

/* ── Blog Styles ───────────────────────────────────── */
/* Blog header band */
.blog-header {
    background: #962D3E;
    color: #fff;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 72px 0 72px 0;
    position: relative;
    box-sizing: border-box;
    /* Add horizontal padding to match blog-content */
    padding-left: 60px;
    padding-right: 60px;
}
.blog-header-inner {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.blog-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    margin-top: 0;
    text-align: left;
}
.blog-meta {
    font-size: 1rem;
    font-style: italic;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.2em;
    color: #fff;
}
.blog-meta .blog-meta-date {
    display: flex;
    align-items: center;
    gap: 0.4em;
}
/* Blog content overlaps the band */
.blog-content {
    max-width: 900px;
    margin: -48px auto 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    padding: 48px 40px 48px 40px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.blog-banner-image {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.blog-image-caption {
    color: grey;
    text-align: center;
    font-size: 0.9em;
    font-style: italic;
    margin-top: -24px;
    margin-bottom: 32px;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.blog-content p {
    margin-top: 0.5em;
    margin-bottom: 1em;
}

.blog-content h1 {
    text-align: center;
}

.blog-content h1 + p {
    text-align: center;
}

.blog-content h2 {
    margin-top: 1.3em;
    margin-bottom: 0.4em;
}

/* Blog content emphasis */
.blog-content strong,
.blog-content b {
    color: #962D3E;
    font-weight: 700;
}

.blog-content blockquote {
    color: #962D3E;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    max-width: 80%;
    margin: 1.5em auto;
    padding: 0;
    border-left: none;
}

.blog-content .footnotes {
    margin-top: 3em;
    color: grey;
}

/* ── Our Insights Page ────────────────────────────── */

.insights-header {
    background: #962D3E;
    color: #fff;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 40px 20px;
    text-align: center;
}

.insights-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.insights-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s;
}

.insights-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.insights-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.insights-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.insights-card-body h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #962D3E;
    margin: 0 0 12px 0;
}

.insights-card-summary {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    flex: 1;
    margin: 0 0 16px 0;
}

.insights-card-meta {
    font-size: 0.8rem;
    color: #999;
    margin: 0;
}

@media (max-width: 900px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Pricing Page ────────────────────────────────── */

.pricing-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-top: 48px;
}

.pricing-page {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 32px;
}

.pricing-page-row {
    flex-direction: row;
}

.pricing-page-row > .pricing-card {
    flex: 1;
    min-width: 0;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.pricing-card-header {
    background: #962D3E;
    color: #fff;
    text-align: center;
    padding: 24px 24px 20px;
}

.pricing-card-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-card-header p {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

.pricing-card-body {
    text-align: center;
    padding: 40px 40px 48px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 4px;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 12px;
    margin-right: 2px;
}

.pricing-amount {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-unit {
    font-size: 0.95rem;
    font-weight: 600;
    font-style: italic;
    color: #333;
    margin-bottom: 24px;
}

.pricing-unit-top {
    margin-top: 8px;
}

.pricing-features {
    max-width: 560px;
    margin: 40px auto 0;
    text-align: left;
}

.pricing-features-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.pricing-features-list li {
    font-size: 1rem;
    color: #333;
    padding: 14px 0;
    border-bottom: 1px solid #e0e0e0;
    padding-left: 36px;
    position: relative;
}

.pricing-features-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

@media (max-width: 600px) {
    .pricing-card-body {
        padding: 32px 24px 40px;
    }

    .pricing-card-header h2 {
        font-size: 1.5rem;
    }

    .pricing-amount {
        font-size: 3.5rem;
    }

    .pricing-page-row {
        flex-direction: column;
    }
}

/* ── Hamburger button ────────────────────────────── */

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #333;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Animate to X when open */
.hamburger.open .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.open .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ── Mobile responsive ───────────────────────────── */

@media (max-width: 768px) {
    .hero-image {
        display: none;
    }

    .main-content {
        padding-left: 0;
        padding-right: 0;
    }

    .hamburger {
        display: flex;
    }

    .banner-nav {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid #e8e8e8;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        padding: 16px 24px;
        gap: 0;
        z-index: 99;
    }

    .banner-nav.open {
        display: flex;
    }

    .nav-link,
    .nav-dropdown-toggle {
        text-align: center;
        padding: 12px 14px;
    }

    .nav-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-dropdown-header {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-dropdown-chevron {
        padding: 8px;
        pointer-events: auto;
    }

    .nav-dropdown.open .nav-dropdown-chevron {
        transform: rotate(180deg);
    }

    /* Disable hover on mobile; use click via .open */
    .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        min-width: 0;
        padding: 0 0 8px;
        text-align: center;
    }

    .nav-dropdown-menu a {
        text-align: center;
    }

    .banner-contact-btn {
        display: none;
    }

    .contact-form-row {
        flex-direction: column;
    }
}
