/* === CSS RESET & BASE === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    background: #F9F6F1;
    color: #232635;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg {
    max-width: 100%;
    vertical-align: middle;
    height: auto;
}
a {
    color: #232635;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #76BE9F;
    outline: none;
}
ul, ol {
    list-style: none;
}

/* === BRAND FONTS === */
h1, h2, h3, h4 {
    font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}
h1 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    line-height: 1.15;
}
h2 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    line-height: 1.18;
}
h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

@media (min-width: 600px) {
    h1 { font-size: 2.9rem; }
    h2 { font-size: 2.1rem; }
}

p, li, span, em {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
}
strong { font-weight: bold; }
em { font-style: italic; }

/* === CONTAINER & LAYOUT === */
.container {
    width: 100%;
    max-width: 1200px;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 auto;
}

.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section,
.hero,
.about-snippet,
.services-preview,
.features,
.testimonials,
.contact-cta,
.process,
.case-studies,
.visit-cta,
.exhibition,
.workshops-overview,
.benefits,
.why-choose-us,
.legal,
.contact-section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
@media (max-width: 600px) {
    .section,
    .hero,
    .about-snippet,
    .services-preview,
    .features,
    .testimonials,
    .contact-cta,
    .process,
    .case-studies,
    .visit-cta,
    .exhibition,
    .workshops-overview,
    .benefits,
    .why-choose-us,
    .legal,
    .contact-section {
        padding: 28px 8px;
        margin-bottom: 40px;
    }
}

/* ===== BRAND GRADIENT AND COLORS ===== */
:root {
    --color-primary: #232635;
    --color-secondary: #76BE9F;
    --color-accent: #F9F6F1;
    --gradient-main: linear-gradient(100deg, #76BE9F 0%, #232635 90%);
    --gradient-secondary: linear-gradient(90deg, #F9F6F1 0%, #76BE9F 100%);
    --gradient-cta: linear-gradient(90deg, #76BE9F 0%, #232635 100%);
    --shadow: 0 4px 28px -8px rgba(35,38,53,.13), 0 1.5px 4px 0 rgba(118,190,159,0.08);
}

/* === HEADER === */
header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 24px -12px rgba(35,38,53, .06);
    position: sticky;
    top: 0;
    z-index: 100;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 68px;
}
header a img {
    height: 32px;
}
nav {
    display: flex;
    align-items: center;
    gap: 18px;
}
nav a {
    padding: 8px 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-primary);
    border-bottom: 2px solid transparent;
    transition: color .22s, border-bottom .2s;
}
nav a:hover, nav a:focus {
    color: var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
}

.cta.primary, .cta.secondary, .cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    border: none;
    border-radius: 32px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    padding: 11px 28px;
    margin-left: 16px;
    box-shadow: var(--shadow);
    transition: background .19s, color .19s, box-shadow .17s, transform .15s;
    outline: none;
    text-align: center;
    text-decoration: none;
}
.cta.primary {
    background: var(--gradient-cta);
    color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
    background: var(--gradient-main);
    box-shadow: 0 8px 32px -8px rgba(35,38,53, .17);
    color: #fff; 
    transform: translateY(-2px) scale(1.03);
}
.cta.secondary {
    background: #fff;
    border: 2px solid var(--color-secondary);
    color: var(--color-primary);
}
.cta.secondary:hover, .cta.secondary:focus {
    background: var(--gradient-secondary);
    color: var(--color-primary);
    box-shadow: 0 6px 20px -9px rgba(118,190,159,.18);
    transform: translateY(-1.5px) scale(1.025);
}
.cta {
    background: var(--color-secondary);
    color: #fff;
}
.cta:hover, .cta:focus {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 14px -5px rgba(35,38,53,.23);
}

/* === MOBILE HEADER & MENU === */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-primary);
    cursor: pointer;
    margin-left: 8px;
    padding: 4px 12px;
    z-index: 203;
    transition: color .18s;
}
.mobile-menu {
    display: none;
}
@media (max-width: 992px) {
    nav {
        display: none;
    }
    .cta.primary {
        display: none;
    }
    .mobile-menu-toggle {
        display: inline-flex;
    }
    .mobile-menu {
        display: flex;
        position: fixed;
        flex-direction: column;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        background: #fff;
        box-shadow: 0 8px 54px -24px rgba(35,38,53, .18);
        z-index: 402;
        padding-top: 22px;
        transform: translateX(-100vw);
        transition: transform .36s cubic-bezier(0.54,0.2,0.4,1.03);
    }
    .mobile-menu.open {
        transform: translateX(0);
    }
    .mobile-menu-close {
        align-self: flex-end;
        font-size: 2.2rem;
        border: none;
        background: none;
        color: var(--color-primary);
        cursor: pointer;
        margin-right: 22px;
        margin-bottom: 20px;
    }
    .mobile-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
        padding-left: 32px;
    }
    .mobile-nav a {
        padding: 12px 0;
        color: var(--color-primary);
        font-size: 1.2rem;
        width: 100%;
        font-family: 'Montserrat', sans-serif;
        border-bottom: 1px solid #eceaea;
        transition: color .18s, background .12s;
    }
    .mobile-nav a:active, .mobile-nav a:hover {
        color: var(--color-secondary);
        background: rgba(118,190,159,.07);
    }
}

/* === HERO SECTION === */
.hero {
    width: 100%;
    min-height: 340px;
    background: var(--gradient-main);
    color: #fff;
    display: flex;
    align-items: center;
    border-radius: 0 0 44px 44px;
    box-shadow: 0 10px 40px -33px rgba(35,38,53, .15);
    margin-bottom: 60px;
    padding-top: 54px;
    padding-bottom: 54px;
    position: relative;
    overflow: hidden;
}
.hero .content-wrapper {
    align-items: flex-start;
    justify-content: center;
    max-width: 720px;
    gap: 18px;
}
.hero h1, .hero p {
    color: #fff;
}
.hero .cta.primary {
    margin-left: 0;
    margin-top: 18px;
    font-size: 1.07rem;
}
@media (max-width: 600px) {
    .hero {
        min-height: 200px;
        border-radius: 0 0 22px 22px;
        padding-top: 30px;
        padding-bottom: 32px;
    }
    .hero h1 {
        font-size: 1.3rem;
    }
}

/* === FLEX UTILITIES for CARDS & GRIDS ===  */
.feature-grid,
.service-cards,
.service-overview-grid,
.process-steps,
.case-teasers,
.team-list,
.testimonial-list,
.project-types {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 18px;
}
.feature-grid > div,
.service-cards > div,
.service-overview-grid > div,
.process-steps > div,
.case-teasers > div,
.team-list > div,
.testimonial-list > div {
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 28px 18px 20px 18px;
    flex: 1 1 230px;
    min-width: 210px;
    max-width: 370px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    margin-bottom: 20px;
    gap: 10px;
    transition: box-shadow .16s, transform .16s;
}
.feature-grid > div:hover,
.service-cards > div:hover,
.service-overview-grid > div:hover,
.case-teasers > div:hover,
.team-list > div:hover {
    box-shadow: 0 12px 36px -14px rgba(35,38,53,.17);
    transform: translateY(-3px) scale(1.015);
}

@media (max-width: 900px) {
    .feature-grid,
    .service-cards,
    .service-overview-grid,
    .process-steps,
    .case-teasers,
    .team-list,
    .testimonial-list,
    .project-types {
        gap: 18px;
    }
    .feature-grid > div,
    .service-cards > div,
    .service-overview-grid > div,
    .case-teasers > div,
    .team-list > div,
    .testimonial-list > div {
        min-width: 170px;
        padding: 18px 7px 16px 10px;
    }
}
@media (max-width: 700px) {
    .feature-grid,
    .service-cards,
    .service-overview-grid,
    .process-steps,
    .case-teasers,
    .team-list,
    .testimonial-list,
    .project-types {
        flex-direction: column;
        gap: 16px;
    }
    .feature-grid > div,
    .service-cards > div,
    .service-overview-grid > div,
    .case-teasers > div,
    .team-list > div,
    .testimonial-list > div {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        margin-bottom: 18px;
        padding: 20px 10px 14px 10px;
    }
}

/* ==== CARD CONTAINER / ITEM SPACING ==== */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 28px 18px 22px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: box-shadow .17s, transform .13s;
}
.card:hover {
    box-shadow: 0 14px 38px -18px rgba(35,38,53,.16);
    transform: translateY(-2.5px) scale(1.015);
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .content-grid,
    .text-image-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}

/* === TESTIMONIALS === */
.testimonials,
.success-stories {
    background: #F9F6F1;
}
.testimonial-slider, .testimonial-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px -8px rgba(35,38,53,.13);
    min-width: 200px;
    min-height: 100px;
    margin-bottom: 20px;
    color: #232635;
    font-size: 1.05rem;
    max-width: 410px;
    transition: box-shadow .14s;
}
.testimonial-card span {
    color: var(--color-secondary);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: 0.01em;
}
.testimonial-card p {
    color: #232635;
}

.ratings-summary {
    margin-top: 18px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* === FEATURE ITEM FLEX === */
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
}

/* === SPECIFIC BLOCKS === */
.contact-block {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 20px;
}
.contact-details {
    flex: 1 1 250px;
}
.map-snippet {
    flex: 1 1 220px;
    background: #E7ECE8;
    border-radius: 14px;
    padding: 18px;
    color: #232635;
    font-size: 0.97rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 74px;
}

@media (max-width: 700px) {
    .contact-block {
        flex-direction: column;
        gap: 12px;
    }
    .map-snippet, .contact-details {
        min-width: 0;
    }
}

/* === CARD & BLOCK SPACING RULE === */
.section > *,
.hero > *,
.features > *,
.testimonials > *,
.about-snippet > *,
.services-preview > *,
.process > *,
.case-studies > *,
.project-process > *,
.workshops-overview > *,
.benefits > *,
.why-choose-us > * {
    margin-bottom: 24px;
}
.section > :last-child,
.hero > :last-child,
.about-snippet > :last-child,
.services-preview > :last-child,
.process > :last-child,
.case-studies > :last-child,
.why-choose-us > :last-child {
    margin-bottom: 0;
}

/* === FORM ELEMENTS & FAQ/LEGAL === */
dt {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.11rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-primary);
}
dd {
    font-size: 1rem;
    margin-bottom: 12px;
}
ol {
    list-style: decimal;
    padding-left: 22px;
    margin-bottom: 18px;
}
ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 18px;
}
ul li, ol li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #232635;
}
.footer-menu {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
@media (max-width: 600px) { .footer-menu { gap: 12px; } }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
    font-size: 0.97rem;
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
}
.footer-social a {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 9px -4px rgba(35,38,53, .10);
    padding: 8px;
    transition: box-shadow .16s, background .15s;
    border: 1px solid #eceaea;
}
.footer-social a:hover {
    background: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(118,190,159,.17);
}
.footer-social img {
    width: 22px;
    height: 22px;
}

footer {
    background: #f6f7f9;
    padding-top: 38px;
    padding-bottom: 24px;
    color: #232635;
    border-top: 1px solid #eceaea;
}
footer .container {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
footer .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 34px;
}
@media (max-width: 900px) {
    footer .content-wrapper {
        flex-direction: column;
        gap: 18px;
    }
}

/* === WHY CHOOSE US ICONS === */
.why-choose-us ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.why-choose-us li {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px -6px rgba(35,38,53,.10);
    padding: 14px 16px;
    font-size: 1rem;
}
.why-choose-us img {
    width: 32px;
    height: 32px;
}

/* === PROCESS TIMELINE === */
.process-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-left: 0;
}
.process-timeline li {
    background: #fff;
    border-radius: 10px;
    padding: 9px 16px;
    font-size: 0.97rem;
    color: #232635;
    box-shadow: 0 1px 6px -3px rgba(35,38,53,.08);
}

/* === VISIT CTA === */
.visit-cta, .contact-cta {
    background: var(--gradient-secondary);
    border-radius: 28px;
    box-shadow: 0 4px 18px -8px rgba(118,190,159,.11);
    color: #232635;
}
.visit-cta h2, .contact-cta h2, .contact-cta p {
    color: #232635;
}

/* === THANK YOU PAGE === */
.thank-you-confirmation {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 5px 28px -10px rgba(35,38,53, .14);
    margin-top: 40px;
}
.thank-you-confirmation h1 {
    color: var(--color-primary);
}

/* === LEGAL / PRIVACY / GDPR SECTIONS === */
.legal {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 18px -7px rgba(35,38,53, .08);
}
.legal h1, .legal h2 {
    color: var(--color-primary);
}

/* === FAQ === */
.faq dl {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: none;
}
.faq dt {
    font-size: 1.05rem;
    color: var(--color-secondary);
    margin-top: 7px;
}
.faq dd {
    margin-left: 0;
    font-size: 1rem;
}

/* === WORKSHOPS / BENEFITS === */
.benefits ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 22px;
}
.benefits li {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 1rem;
}
.benefits img {
    width: 22px;
    height: 22px;
}

.success-stories {
    margin-top: 32px;
    gap: 22px;
}
.success-stories h3 {
    margin-top: 0;
    margin-bottom: 14px;
}
.success-stories .testimonial-card {
    margin-bottom: 15px;
}

/* === PROJECT TYPES TAGS === */
.project-types {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.project-types li {
    background: #fff;
    padding: 8px 18px;
    border-radius: 14px;
    font-size: .97rem;
    box-shadow: 0 1px 7px -5px rgba(35,38,53,.08);
}

/* === RESPONSIVE == */
@media (max-width: 600px) {
    html {
        font-size: 15px;
    }
    .container {
        padding-left: 4px;
        padding-right: 4px;
    }
    h1 {
        font-size: 1.35rem;
    }
    h2 {
        font-size: 1.1rem;
    }

    .footer-social a {
        padding: 6px;
    }
}

/* === COOKIE BANNER === */
.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-primary);
    color: #fff;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 10px 24px 10px;
    box-shadow: 0 -6px 36px -10px rgba(35,38,53,.18);
    animation: fadein-banner 0.4s;
}
@keyframes fadein-banner {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner .consent-content {
    max-width: 700px;
    flex: 1 1 300px;
    font-size: 1rem;
    margin-right: 42px;
}
.cookie-consent-banner .cookie-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}
.cookie-consent-banner button {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    border: none;
    border-radius: 22px;
    padding: 9px 24px;
    background: var(--color-secondary);
    color: #232635;
    box-shadow: 0 1px 9px -4px rgba(118,190,159,.13);
    font-weight: 700;
    margin: 0 .5em 0 0;
    cursor: pointer;
    transition: background .16s, color .15s, box-shadow .13s;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 2px 12px -7px rgba(35,38,53,.13);
}
.cookie-consent-banner .cookie-settings-btn {
    background: none;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

@media (max-width: 750px) {
    .cookie-consent-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-consent-banner .consent-content {
        margin-right: 0;
        margin-bottom: 11px;
        width: 100%;
    }
}

/* === COOKIE MODAL === */
.cookie-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10010;
    background: rgba(35,38,53,0.33);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: background .18s;
    animation: fadein-modal 0.35s;
}
@keyframes fadein-modal {
    from { opacity: 0; }
    to { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
    background: #fff;
    border-radius: 22px;
    max-width: 420px;
    width: 95%;
    padding: 38px 24px 26px 24px;
    box-shadow: 0 8px 38px -14px rgba(35,38,53,.18);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    animation: modalin 0.33s cubic-bezier(.62,1.65,.28,1.01);
}
@keyframes modalin {
    from { transform: translateY(34px) scale(0.98); opacity: 0.2; }
    to { transform: none; opacity: 1; }
}
.cookie-modal .cookie-modal-close {
    position: absolute;
    right: 15px;
    top: 13px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-primary);
    cursor: pointer;
}
.cookie-modal h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.cookie-modal .cookie-category {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 1rem;
}
.cookie-modal .cookie-category input[type=checkbox] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-secondary);
    margin:0;
}
.cookie-modal .cookie-category label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
}
.cookie-modal .cookie-category[aria-disabled="true"] label {
    color: #b1b1b1;
}
.cookie-modal .cookie-actions {
    display: flex;
    gap: 16px;
    margin-top: 18px;
}
.cookie-modal .cookie-actions button {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    border: none;
    border-radius: 22px;
    padding: 9px 24px;
    background: var(--color-secondary);
    color: #232635;
    box-shadow: 0 1px 9px -4px rgba(118,190,159,.13);
    font-weight: 700;
    cursor: pointer;
    transition: background .16s, color .15s, box-shadow .13s;
}
.cookie-modal .cookie-actions button:hover, .cookie-modal .cookie-actions button:focus {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 2px 12px -7px rgba(35,38,53,.14);
}

/* === ANIMATIONS === */
.cta, .cta.primary, .cta.secondary, .footer-social a, .card, .testimonial-card, .feature-grid > div, .service-cards > div, .service-overview-grid > div {
    transition: box-shadow 0.15s, background 0.18s, color 0.12s, transform 0.13s;
}

/* === VISUAL ACCESSIBILITY === */
:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 1.5px;
}

@media (hover: hover) {
    a:hover, button:hover, .footer-social a:hover {
        transition: color 0.12s, background 0.12s, box-shadow 0.12s;
    }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 12px; background: #eceaea; }
::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
    background: #439272;
}

/* === OVERRIDES FOR DARK ELEMENTS (e.g., hero) === */
.hero, .hero.showroom, .hero.workshops {
    color: #fff;
    background: var(--gradient-main);
}

/* === SERVICE PRICES/EMPHASIS === */
.service-price, .service-overview-grid span {
    background: var(--color-secondary);
    color: #fff;
    border-radius: 14px;
    padding: 4.5px 13px;
    font-size: 0.98rem;
    display: inline-block;
    margin-top: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
}

 /* === SHOWROOM PAGE SPECIFIC === */
 .showroom {
    background: var(--gradient-main);
    color: #fff;
 }
 .showroom h1, .showroom p {
    color: #fff;
 }

/* === END === */
