/* --- CSS RESET & NORMALIZE --- */
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, main, 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;
}
body {
    line-height: 1.5;
    font-family: 'Roboto', Arial, sans-serif;
    background: #F4F8FB;
    color: #013659;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
    box-sizing: inherit;
}
ul, ol {
    list-style: none;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
img {
    max-width: 100%;
    display: block;
}
input, button, textarea, select {
    font: inherit;
    outline: none;
    border: none;
    background: none;
}
button {
    cursor: pointer;
}

/* --- CUSTOM FONTS --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

:root {
    --primary: #013659;
    --secondary: #19B5A7;
    --accent: #F4F8FB;
    --bg-white: #fff;
    --grey-light: #f4f8fb;
    --grey-dark: #d9e4ec;
    --shadow-main: 0 4px 28px 0 rgba(19, 40, 77, 0.12);
    --radius-main: 18px;
    --radius-btn: 50px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-main);
    box-shadow: var(--shadow-main);
    position: relative;
}
@media (max-width: 768px) {
    .section {
        padding: 28px 8px;
        margin-bottom: 36px;
    }
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: none;
}
h1 {
    font-size: 2.9rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--secondary);
    background: linear-gradient(90deg, #19B5A7 0%, #013659 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
}
h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--secondary);
}
h4 {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
}
p, li, span, a, label {
    font-size: 1rem;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.65;
}
strong { font-weight: 700; color: var(--primary); }

/* --- HEADER --- */
header {
    background: var(--bg-white);
    box-shadow: 0 2px 16px 0 rgba(1, 54, 89, 0.05);
    position: relative;
    z-index: 99;
    width: 100%;
}
header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    gap: 20px;
}
header img {
    height: 48px;
    width: auto;
}
header nav {
    display: flex;
    gap: 28px;
    align-items: center;
    font-family: 'Montserrat', Arial, sans-serif;
}
header nav a {
    font-weight: 600;
    font-size: 1.03rem;
    letter-spacing: 0.06em;
    color: var(--primary);
    padding: 5px 0;
    border-bottom: 2.5px solid transparent;
    transition: color 0.2s, border-bottom-color 0.2s;
    position: relative;
}
header nav a:hover, header nav a:focus {
    color: var(--secondary);
    border-bottom: 2.5px solid var(--secondary);
}
.cta-btn {
    font-family: 'Montserrat', Arial, sans-serif;
    background: var(--secondary);
    color: #fff !important;
    border-radius: var(--radius-btn);
    padding: 11px 36px 11px 36px;
    font-size: 1.11rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-left: 16px;
    box-shadow: 0 3px 12px 0 rgba(19, 40, 77, 0.13);
    transition: background 0.18s, box-shadow 0.18s, color 0.15s;
    display: inline-block;
    border: none;
    outline: none;
}
.cta-btn:hover, .cta-btn:focus {
    background: var(--primary);
    color: var(--secondary) !important;
    box-shadow: 0 6px 18px 0 rgba(25, 181, 167, 0.18);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
    display: none;
    font-size: 2.4rem;
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    border: none;
    z-index: 1002;
    transition: background 0.2s;
}
.mobile-menu-toggle:hover {
    background: var(--primary);
}
.mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(1,54,89, 0.98);
    transform: translateX(-100vw);
    transition: transform 0.35s cubic-bezier(0.77,0,0.175,1);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 28px;
    padding-left: 0;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    margin-left: auto;
    margin-right: 34px;
    margin-bottom: 22px;
    transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--secondary); }
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0 36px;
    width: 75vw;
    max-width: 380px;
}
.mobile-nav a {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 8px 0;
    border-bottom: 2.5px solid transparent;
    transition: color 0.18s, border-bottom-color 0.18s;
    letter-spacing: 0.04em;
}
.mobile-nav a:hover, .mobile-nav a:focus { color: var(--secondary); border-bottom: 2.5px solid var(--secondary); }

@media (max-width: 1024px) {
    header nav, .cta-btn {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}
@media (max-width: 1024px) {
    .header .container {
        gap: 6px;
    }
}

/* --- MAIN LAYOUT --- */
main {
    flex: 1 1 auto;
    width: 100vw;
    display: block;
    min-height: 60vh;
    margin-bottom: 22px;
}

/* --- FLEX PATTERNS & REUSABLE LAYOUTS --- */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}
.card {
    background: var(--grey-light);
    border-radius: var(--radius-main);
    box-shadow: var(--shadow-main);
    margin-bottom: 20px;
    position: relative;
    padding: 28px 20px;
    min-width: 260px;
    flex: 1 1 250px;
    transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover, .card:focus-within {
    box-shadow: 0 10px 28px 0 rgba(25,181,167,0.18);
    transform: translateY(-4px) scale(1.015);
}
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.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) {
    .text-image-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 16px 0 rgba(1,54,89,0.11);
    margin-bottom: 20px;
    min-width: 260px;
    max-width: 370px;
    border-left: 7px solid var(--secondary);
    position: relative;
    transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 28px 0 rgba(25,181,167,0.13);
}
.testimonial-card p {
    color: var(--primary);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.5;
}
.testimonial-card span {
    color: var(--secondary);
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 24px 16px;
    background: var(--grey-light);
    border-radius: var(--radius-main);
    margin-bottom: 20px;
    min-width: 220px;
    box-shadow: 0 2px 10px 0 rgba(25,181,167,0.13);
    transition: box-shadow 0.18s;
}
.feature-item:hover {
    box-shadow: 0 4px 28px 0 rgba(25,181,167,0.18);
}

/* --- HOMEPAGE SPECIALS --- */
.feature-grid, .service-cards, .service-grid, .team-list, .testimonial-slider, .testimonial-grid, .post-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}
.service-cards > div, .service-grid > div, .feature-grid > div, .team-list > div, .post-list > div {
    background: var(--grey-light);
    border-radius: var(--radius-main);
    box-shadow: 0 2px 13px -2px rgba(1,54,89,0.05);
    padding: 22px 18px;
    min-width: 220px;
    flex: 1 1 230px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    transition: box-shadow 0.15s, background 0.18s;
    position: relative;
}
.service-cards > div:hover, .service-grid > div:hover, .feature-grid > div:hover, .team-list > div:hover, .post-list > div:hover {
    box-shadow: 0 8px 24px 0 rgba(25,181,167,0.15);
    background: #fff;
}
.service-cards a, .service-grid a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.14s;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.02rem;
}
.service-cards a:hover, .service-cards a:focus,
.service-grid a:hover, .service-grid a:focus {
    color: var(--secondary);
    text-decoration: none;
}
.feature-grid img {
    height: 44px;
    width: 44px;
    margin-bottom: 7px;
}

/* --- BLOG --- */
.blog-search-bar {
    margin-bottom: 28px;
}
.blog-search-bar input[type="text"] {
    padding: 13px 20px;
    border-radius: var(--radius-btn);
    background: #fff;
    border: 1.5px solid var(--grey-dark);
    font-size: 1rem;
    width: 100%;
    box-shadow: 0 1px 6px 0 rgba(1,54,89,0.06);
    transition: border 0.12s, box-shadow 0.12s;
}
.blog-search-bar input[type="text"]:focus {
    border: 1.5px solid var(--secondary);
    box-shadow: 0 1px 8px 0 rgba(25,181,167,0.11);
}
.blog-post {
    background: var(--bg-white);
    border-radius: var(--radius-main);
    box-shadow: var(--shadow-main);
    margin-bottom: 20px;
    padding: 24px 16px;
    transition: box-shadow 0.15s, background 0.17s;
}
.blog-post:hover {
    background: var(--grey-light);
    box-shadow: 0 8px 14px rgba(25,181,167,0.11);
}
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 18px;
}
.categories-list ul {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.categories-list li {
    background: var(--grey-dark);
    border-radius: 10px;
    padding: 5px 17px;
    color: var(--primary);
    font-weight: 700;
    font-family: 'Montserrat';
    font-size: 1.05rem;
}

/* --- OTHER LISTS --- */
.event-types-list h4, .certificates-list h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
}
.event-types-list ul, .certificates-list ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 12px;
    margin-top: 6px;
}

/* --- TEXT SECTIONS --- */
.text-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.text-section ul, .text-section ol {
    margin-left: 20px;
    list-style: disc;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 6px;
    gap: 8px;
}
.text-section li {
    margin-bottom: 6px;
}

/* --- TEAM LIST --- */
.team-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.team-list > div {
    min-width: 180px;
    max-width: 235px;
    text-align: left;
    box-shadow: 0 2px 13px -2px rgba(25,181,167,0.08);
    background: var(--grey-light);
    padding: 18px 12px;
    border-radius: var(--radius-main);
    transition: box-shadow 0.15s;
}
.team-list > div:hover {
    box-shadow: 0 8px 20px 0 rgba(25,181,167,0.14);
    background: #fff;
}
.team-list h3 {
    margin-bottom: 7px;
    color: var(--secondary);
    font-size: 1.15rem;
}

/* --- TESTIMONIAL SLIDER/GRID --- */
.testimonial-slider, .testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}

/* --- FOOTER ---*/
footer {
    background: var(--primary);
    width: 100vw;
    color: #fff;
    padding: 36px 0 22px 0;
    box-shadow: 0 -2px 16px 0 rgba(1,54,89, 0.05);
    margin-top: 18px;
}
footer .container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
footer img {
    height: 42px;
}
footer nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Montserrat', Arial, sans-serif;
}
footer nav a {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 3px 0;
    border-bottom: 1.5px solid transparent;
    transition: color 0.19s, border-bottom-color 0.19s;
}
footer nav a:hover, footer nav a:focus {
    color: var(--secondary);
    border-bottom: 1.5px solid var(--secondary);
}
footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: 1rem;
    color: #fff;
}
footer .contact-info img {
    height: 20px;
    width: 20px;
    margin-right: 7px;
    vertical-align: middle;
}
footer .contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 900px) {
    .container {
        max-width: 97vw;
    }
    .feature-grid, .service-cards, .team-list, .testimonial-slider, .testimonial-grid, .post-list { gap: 18px; }
    .card-container { gap: 14px; }
    .content-grid { gap: 12px; }
}
@media (max-width: 1024px) {
    footer .container {
        flex-direction: column;
        gap: 28px;
        align-items: flex-start;
    }
    main {
        margin-bottom: 16px;
    }
}
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.44rem; }
    .container { padding-right: 5px; padding-left: 5px; }
    .feature-grid, .service-cards, .service-grid, .team-list, .testimonial-slider, .testimonial-grid, .post-list {
        flex-direction: column;
        gap: 14px;
    }
    .card, .feature-item, .service-cards > div, .service-grid > div, .team-list > div, .testimonial-card, .blog-post {
        min-width: 96vw;
        max-width: 98vw;
    }
    .testimonial-slider, .testimonial-grid {
        justify-content: center;
        align-items: center;
    }
}
@media (max-width: 500px) {
    body { font-size: 0.98rem; }
    h1, h2 { word-break: break-word; }
    .section { padding: 20px 4px; }
}

/* --- BUTTONS, LINKS, INTERACTIONS --- */
button, .cta-btn {
    transition: background 0.15s, color 0.15s, box-shadow 0.13s;
}
a, button, .cta-btn { outline: none; }

/* --- ANIMATIONS/MICRO-INTERACTIONS --- */
.card, .service-cards > div, .feature-item, .testimonial-card, .blog-post, .team-list > div {
    transition: box-shadow 0.18s, background 0.18s, transform 0.13s;
}
.card:hover, .service-cards > div:hover, .feature-item:hover, .testimonial-card:hover, .blog-post:hover, .team-list > div:hover {
    transform: scale(1.018) translateY(-2px);
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    background: var(--bg-white);
    color: var(--primary);
    box-shadow: 0 -4px 32px 0 rgba(1,54,89, 0.16);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px 21px 32px;
    z-index: 2000;
    font-size: 1rem;
    gap: 14px;
    transition: transform 0.3s cubic-bezier(0.77,0,0.175,1);
}
.cookie-banner.closed {
    transform: translateY(120%);
    pointer-events: none;
}
.cookie-banner .cookie-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
}
.cookie-banner button {
    background: var(--secondary);
    color: #fff;
    border-radius: var(--radius-btn);
    padding: 8px 24px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    box-shadow: 0 2px 7px rgba(25,181,167,0.09);
    transition: background 0.18s, color 0.18s;
}
.cookie-banner button.reject {
    background: var(--primary);
    color: var(--secondary);
}
.cookie-banner button.settings {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--secondary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
    background: var(--primary);
    color: #fff;
}
.cookie-banner button.settings:hover {
    background: var(--secondary);
    color: #fff;
}
@media (max-width: 700px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 7px 17px 7px;
        gap: 13px;
        font-size: 0.98rem;
    }
    .cookie-banner .cookie-actions {
        gap: 10px;
        width: 100%;
        justify-content: flex-start;
    }
}

/* --- COOKIE MODAL --- */
.cookie-modal {
    position: fixed;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(1, 54, 89, 0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s cubic-bezier(0.77,0,0.175,1);
}
.cookie-modal.open {
    opacity: 1;
    pointer-events: all;
}
.cookie-modal-content {
    background: #fff;
    color: var(--primary);
    border-radius: var(--radius-main);
    box-shadow: var(--shadow-main);
    padding: 36px 30px 24px 30px;
    min-width: 340px;
    max-width: 92vw;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    animation: cookiePopIn 0.44s cubic-bezier(0.77,0,0.175,1);
}
@keyframes cookiePopIn {
    0% { transform: scale(0.88) translateY(60px); opacity: 0.25; }
    70% { transform: scale(1.03) translateY(-12px); opacity: 1; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h3 {
    color: var(--secondary);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.16rem;
    margin-bottom: 0px;
    font-weight: 700;
}
.cookie-modal-content .cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
}
.cookie-category label {
    font-weight: 600;
    user-select: none;
}
.cookie-toggle {
    width: 38px;
    height: 22px;
    background: var(--grey-light);
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    margin-left: 6px;
    transition: background 0.15s;
    border: 1.5px solid var(--secondary);
    display: flex;
    align-items: center;
}
.cookie-toggle input {
    display: none;
}
.cookie-toggle .slider {
    position: absolute;
    height: 16px;
    width: 16px;
    left: 3px;
    background: var(--primary);
    border-radius: 50%;
    transition: left 0.16s, background 0.16s;
}
.cookie-toggle input:checked + .slider {
    left: 19px;
    background: var(--secondary);
}
.cookie-category.essential {
    color: var(--primary);
    opacity: 0.9;
}
.cookie-modal-actions {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 11px;
    margin-top: 5px;
}
.cookie-modal-actions button {
    padding: 7px 20px;
    border-radius: var(--radius-btn);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    border: none;
    font-size: 1rem;
    background: var(--secondary);
    color: #fff;
    transition: background 0.14s;
}
.cookie-modal-actions button.cancel {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--secondary);
}
.cookie-modal-actions button.cancel:hover { background: var(--grey-light); color: var(--primary); }
.cookie-modal-actions button:hover { background: var(--primary); color: #fff; }
@media (max-width: 500px){
    .cookie-modal-content { padding: 18px 5px 10px 5px; min-width: 98vw; }
    .cookie-modal-content h3 { font-size: 1rem; }
}

/* --- UNIQUE ARTISTIC/CREATIVE ELEMENTS --- */
h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2.5px;
    margin-top: 7px;
    margin-bottom: -5px;
}
.section {
    background: linear-gradient(104deg, #F4F8FB 78%, #19b5a715 100%);
    border: 3.5px dashed #19B5A7;
}
h1, h2 {
    letter-spacing: -0.02em;
}
.service-cards > div, .feature-grid > div, .team-list > div, .testimonial-card {
    position: relative;
    overflow: visible;
}
.service-cards > div::before, .testimonial-card::before, .feature-grid > div::before, .team-list > div::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    width: 32px;
    height: 32px;
    background: var(--secondary);
    opacity: 0.12;
    border-radius: 44% 66% 72% 54%;
    z-index: 0;
    pointer-events:none;
    filter: blur(2.5px);
}
@media (max-width: 768px) {
    .service-cards > div::before, .testimonial-card::before, .feature-grid > div::before, .team-list > div::before {
        display: none;
    }
}

/* --- ARTISTIC BUTTON EFFECTS --- */
.cta-btn {
    box-shadow: 0 2px 13px 0 rgba(19, 53, 89, 0.12);
    background-image: linear-gradient(96deg, #19B5A7 70%, #013659 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
}
.cta-btn:hover, .cta-btn:focus {
    background-position: 100% 0%;
    color: #fff !important;
}

/* --- MISCELLANEOUS --- */
a:active { color: var(--secondary); }
hr {
    border: none;
    height: 2px;
    background: var(--grey-dark);
    width: 100%;
    margin: 19px 0;
}

/* --- ENSURE MINIMUM CARD GAP & NO ABSOLUTE CONTENT OVERLAP --- */
.card, .service-cards > div, .feature-grid > div, .team-list > div, .testimonial-card {
    margin-bottom: 20px;
}

/* --- PREVENT OVERLAP, ENSURE FLEX-GAP EVERYWHERE --- */
.card-container, .feature-grid, .content-grid, .service-cards, .service-grid, .team-list, .testimonial-slider, .testimonial-grid, .post-list {
    gap: 24px !important;
}
@media (max-width: 520px){
    .card, .service-cards > div, .feature-grid > div, .team-list > div, .testimonial-card {
        min-width: 95vw;
        max-width: 100vw;
        padding: 12px 4px;
    }
}

/* --- HIDE SCROLL IN MODALS/MENUS WHEN OPEN --- */
body.menu-open, body.cookie-modal-open {
    overflow: hidden !important;
}

/* --- CUSTOM SCROLLBAR FOR ARTISTIC FLAIR (WEBKIT) --- */
::-webkit-scrollbar {
    height: 9px; width: 8px; background: #F4F8FB;
}
::-webkit-scrollbar-thumb {
    background: #19B5A7; border-radius: 6px;
}

/* --- END --- */