/* ========================================================================
   FUZZY MOUNTAIN: CREATIVE ARTISTIC STYLE CSS - style.css (ALL PAGES)
   ======================================================================== */
/* === 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,
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;
}
body {
    line-height: 1.5;
    background: #F5F7FA;
    color: #314355;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    min-height: 100vh;
}
img, picture, video, canvas, svg {
    display: inline-block;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
a {
    color: #507E32;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #314355;
    text-decoration: underline;
    outline: none;
}
ul, ol {
    margin-left: 24px;
    margin-bottom: 24px;
}
li {
    margin-bottom: 8px;
    line-height: 1.7;
}
strong {
    font-weight: 700;
}
em {
    font-style: italic;
}
button,
input[type="button"],
input[type="submit"] {
    font-family: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    background: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
}

/* === BRAND FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #202E3B;
    margin-bottom: 16px;
    line-height: 1.13;
}
h1 {
    font-size: 2.6rem;
    margin-bottom: 24px;
}
h2 {
    font-size: 2rem;
    margin-bottom: 18px;
}
h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #366D58;
    margin-bottom: 12px;
}
p, .text-section {
    font-size: 1.06rem;
    margin-bottom: 16px;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    h3 {
        font-size: 1.12rem;
    }
}

/* === LAYOUT CONTAINERS === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 0;
}

/* === FLEX UTILITIES (MANDATORY CLASSES) === */
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    border-radius: 28px;
    box-shadow: 0 6px 32px 0 rgba(14,38,64,0.09);
    background: #fff;
    padding: 28px 22px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
    box-shadow: 0 12px 40px 0 rgba(49,67,85,0.16);
    transform: translateY(-4px) scale(1.018);
}
.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;
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 22px 0 rgba(56, 221, 84, 0.09), 0 0 0 2px #A2D5891a;
    margin-bottom: 20px;
    min-width: 0;
    font-size: 1.08rem;
    color: #25394C;
    font-family: 'Open Sans', Arial, sans-serif;
    position: relative;
}
.testimonial-card p {
    margin: 0 18px 0 0;
    font-style: italic;
    color: #2D3549;
}
.testimonial-card div {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1em;
    font-weight: 700;
    color: #4D7263;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* === HERO SECTION === */
.hero {
    background: #A2D589;
    background-image: url('../assets/hero-art-deco.svg'), linear-gradient(110deg, #A2D589 90%, #F5F7FA 100%);
    background-blend-mode: screen;
    min-height: 220px;
    padding: 48px 0 36px 0;
    box-shadow: 0 2px 38px 0 rgba(49,67,85,0.08);
    border-radius: 0 0 50px 50px/0 0 16px 16px;
    position: relative;
}
@media (max-width: 768px) {
    .hero {
        background-size: cover;
        padding: 34px 0 12px 0;
        min-height: 150px;
        border-radius: 0 0 26px 26px;
    }
}
.hero h1 {
    color: #314355;
    text-shadow: 1px 2px 8px #BFE7A7cc;
}
.hero p {
    color: #202E3B;
    font-size: 1.13rem;
    margin-bottom: 22px;
    max-width: 800px;
}

/* === NAVIGATION HEADER === */
header {
    width: 100%;
    background: #fff;
    border-bottom: 3px solid #A2D58955;
    padding: 0 0;
}
header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    justify-content: space-between;
    min-height: 68px;
}
header nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
header nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #314355;
    letter-spacing: 0.01em;
    padding: 6px 12px;
    border-radius: 12px;
    transition: background 0.2s, color 0.2s;
    position: relative;
}
header nav a:hover, header nav a:focus {
    background: #A2D58933;
    color: #202E3B;
}
header img {
    max-height: 42px;
    width: auto;
    margin-right: 12px;
}
.cta-primary {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #314355;
    color: #fff;
    padding: 13px 30px;
    border-radius: 999px;
    font-size: 1.13rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 16px 0 #A2D58933;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.11s;
    margin-left: 20px;
    border: 2px solid #A2D589;
    position: relative;
    z-index: 2;
}
.cta-primary:hover, .cta-primary:focus {
    background: #A2D589;
    color: #314355;
    box-shadow: 0 4px 24px 0 #3143552a;
    transform: scale(1.05);
}
.cta-secondary {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fff;
    color: #507E32;
    border: 2px solid #A2D589;
    padding: 13px 26px;
    border-radius: 999px;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-left: 0;
    margin-top: 6px;
    transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.cta-secondary:hover, .cta-secondary:focus {
    background: #A2D589;
    color: #314355;
    border-color: #314355;
}

/* === RESPONSIVE NAVIGATION === */
@media (max-width: 900px) {
    header .container {
        flex-direction: row;
        gap: 12px;
    }
    header nav {
        gap: 7px;
    }
}
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
    }
    header nav {
        display: none;
    }
    .cta-primary {
        display: none;
    }
}

/* == MOBILE HAMBURGER MENU == */
.mobile-menu-toggle {
    position: fixed;
    top: 16px;
    right: 20px;
    z-index: 1030;
    font-size: 2.3rem;
    background: #314355;
    color: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px #A2D58944;
    border: 2px solid #A2D589;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, transform 0.1s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
    background: #A2D589;
    color: #314355;
    outline: none;
    transform: scale(1.05);
}
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

.mobile-menu {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    box-shadow: 0 10px 60px rgba(49,67,85,0.14);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px 10px 10px 30px;
    transform: translateX(-110vw);
    transition: transform 0.34s cubic-bezier(.71,.11,.22,1.13);
    overflow-y: auto;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    font-size: 2.1rem;
    background: #A2D589;
    color: #fff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px #31435544;
    margin-bottom: 20px;
    border: 2px solid #314355;
    align-self: flex-end;
    transition: background 0.14s, color 0.14s, transform 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    background: #314355;
    color: #A2D589;
    transform: scale(1.04);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 97%;
    margin-top: 14px;
}
.mobile-nav a {
    font-size: 1.243rem;
    padding: 16px 0 11px 2px;
    color: #314355;
    font-family: 'Montserrat', Arial, sans-serif;
    border-radius: 12px;
    transition: background 0.17s, color 0.17s;
    font-weight: 700;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
    background: #A2D58933;
    color: #04060d;
}
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

/* === SECTION LAYOUT === */
section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    margin-bottom: 54px;
    padding: 0;
}
section .container {
    width: 100%;
}
section .content-wrapper {
    padding-left: 0;
    padding-right: 0;
}

/* === ARTISTIC BUTTONS, LINKS === */
button, .cta-primary, .cta-secondary {
    font-family: 'Montserrat', Arial, sans-serif;
    outline: none;
    user-select: none;
}
.button, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    font-size: 1.07rem;
    padding: 10px 23px;
    border-radius: 999px;
    border: 2px solid #A2D589;
    background: #fff;
    color: #314355;
    font-weight: 700;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
    text-align: center;
    cursor: pointer;
}
.button:hover, .btn:hover, .button:focus, .btn:focus {
    background: #A2D589;
    color: #314355;
    box-shadow: 0 6px 22px 0 #A2D58955;
}

/* === UNIQUE CREATIVE ELEMENTS === */
ul li img, .feature-list li img {
    width: 26px;
    height: 26px;
    margin-right: 12px;
    vertical-align: middle;
    filter: drop-shadow(0 0 4px #A2D58955);
}

/* === CARDS === */
.card, .testimonial-card {
    border: 1.5px solid #A2D58933;
    box-shadow: 0 4px 40px 0 rgba(66,191,165,0.065);
}

/* === VISUAL HIERARCHY & LISTS === */
ul, ol {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.09rem;
}
ul > li {
    margin-bottom: 12px;
}
ol > li {
    margin-bottom: 10px;
}
dt {
    font-weight: 700;
}
dd {
    margin-bottom: 10px;
}

/* === ARTISTIC SPACING & SHADOWS === */
.section,
.card,
.content-wrapper,
.testimonial-card,
.feature-item {
    margin-bottom: 20px;
}
.card-container, .content-grid, .text-image-section, .feature-item {
    gap: 24px;
}
.card {
    background: #fafcff;
    border-left: 7px solid #A2D589;
    box-shadow: 2px 6px 24px 0 #A2D58919;
}

/* === FORMS/INPUTS === */
input[type="text"],
input[type="email"],
select {
    font-size: 1em;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1.5px solid #A2D589;
    background: #fff;
    margin-right: 12px;
    font-family: 'Open Sans', Arial, sans-serif;
    transition: border-color 0.16s, box-shadow 0.16s;
    outline: none;
    margin-bottom: 10px;
}
input[type="text"]:focus, input[type="email"]:focus, select:focus {
    border-color: #314355;
    box-shadow: 0 3px 12px 0 #A2D58933;
}
label {
    margin-right: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #314355;
    font-weight: 600;
}

/* === FOOTER === */
footer {
    width: 100%;
    background: #314355;
    color: #fff;
    padding: 30px 0 20px 0;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -2px 32px #31435522;
    margin-top: 50px;
    letter-spacing: 0.01em;
}
footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
footer nav a {
    color: #A2D589;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus {
    color: #fff;
}
footer div {
    font-size: 0.98em;
    color: #fff;
    opacity: 0.91;
}

/* === ICONS & SOCIAL === */
section .content-wrapper a img {
    width: 36px;
    height: 36px;
    margin-right: 9px;
    vertical-align: middle;
    filter: grayscale(0.16) drop-shadow(0 1.5px 5px #A2D58933);
    opacity: 0.8;
    transition: filter 0.2s, opacity 0.16s;
}
section .content-wrapper a img:hover {
    filter: grayscale(0) drop-shadow(0 2px 10px #A2D58988);
    opacity: 1;
}

/* === RESPONSIVE DESIGN / MOBILE FIRST === */
@media (max-width: 900px) {
    .container {max-width: 97vw;}
    html, body {font-size: 15px;}
}
@media (max-width: 768px) {
    .container {padding: 0 12px;}
    .content-wrapper, .testimonials, .content-grid {gap: 14px;}
    section {margin-bottom: 36px; padding: 28px 0;}
    h1, h2 {margin-bottom: 14px;}
    .testimonials {flex-direction: column;}
    .testimonial-card {flex-direction: column; align-items: flex-start; gap: 4px; padding: 16px 8px; width: 100%;}
    .card-container, .content-grid, .text-image-section {flex-direction: column; gap: 14px; padding: 0;}
    .text-image-section {flex-direction: column; align-items: flex-start;}
    .cta-primary, .cta-secondary {font-size: 1rem; min-width: 0;}
    .navbar, nav, header nav {flex-direction: column; gap: 4px;}
}

/* == Cookie Banner == */
.cookie-banner {
    position: fixed;
    z-index: 2100;
    left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 36px 20px 24px;
    background: #fff;
    box-shadow: 0 -5px 36px #31435523;
    border-top: 2.5px solid #A2D589;
    border-radius: 22px 22px 0 0;
    font-size: 1rem;
    color: #314355;
    animation: cookie-dropin 0.76s cubic-bezier(.22,1.5,.48,1.12);
}
.cookie-banner.hide {
    display: none;
}
@keyframes cookie-dropin {
    from { transform: translateY(140%); opacity: 0.35; }
    to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
    max-width: 70vw;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.07em;
    margin-right: 12px;
}
.cookie-banner-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
}
.cookie-btn {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1em;
    padding: 10px 23px;
    border-radius: 999px;
    border: 2px solid #A2D589;
    background: #fff;
    color: #314355;
    transition: background 0.19s, color 0.19s, box-shadow 0.19s, border-color 0.18s;
    cursor: pointer;
}
.cookie-btn.accept {
    background: #A2D589;
    color: #314355;
    border-color: #314355;
    box-shadow: 0 2px 12px #A2D58944;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
    background: #314355;
    color: #fff;
    border-color: #A2D589;
}
.cookie-btn.reject {
    background: #314355;
    color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
    background: #A2D589;
    color: #314355;
}
.cookie-btn.settings {
    background: #fff;
    color: #314355;
    border: 2px solid #A2D589;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
    background: #A2D589;
    color: #314355;
}
@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 8px 18px 8px;
    }
    .cookie-banner-message { max-width: 94vw; margin-bottom: 9px; }
    .cookie-banner-buttons { gap: 8px; }
}

/* == COOKIE MODAL == */
.cookie-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2150;
    background: rgba(49,67,85,0.42);
    display: none;
    align-items: center;
    justify-content: center;
    animation: cookie-overlay-in 0.27s ease;
}
.cookie-modal-overlay.open {
    display: flex;
}
@keyframes cookie-overlay-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.cookie-modal {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 42px #3143552f;
    padding: 32px 20px 22px 26px;
    max-width: 375px;
    width: 96vw;
    color: #314355;
    font-family: 'Open Sans', Arial, sans-serif;
    position: relative;
    animation: modal-in 0.31s cubic-bezier(.61,1.05,.23,1.22);
}
@keyframes modal-in {
    from { transform: translateY(-40px); opacity: 0.7; }
    to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
    font-size: 1.35rem;
    margin-bottom: 16px;
}
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 26px 0 14px 0;
}
.cookie-category {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}
.cookie-category input[type=checkbox],
.cookie-category input[type=radio] {
    accent-color: #A2D589;
    width: 18px;
    height: 18px;
}
.cookie-category strong {
    font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category .always-on {
    color: #899aa3;
    font-weight: 400;
    font-size: 0.97em;
}
.cookie-modal-actions {
    display: flex;
    flex-direction: row;
    gap: 14px;
    margin-top: 4px;
    justify-content: right;
}
.cookie-modal .close-cookie-modal {
    position: absolute;
    top: 10px; right: 12px;
    font-size: 1.4rem;
    background: #A2D589;
    color: #fff;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    border: 1.5px solid #314355;
    text-align: center;
    line-height: 32px;
    cursor: pointer;
    transition: background 0.16s, color 0.15s;
}
.cookie-modal .close-cookie-modal:hover {
    background: #314355;
    color: #fff;
}

/* === ACCESSIBILITY & INTERACTIONS === */
:focus {
    outline: 2px solid #A2D589;
    outline-offset: 1.5px;
}

/* === CREATIVE ANIMATIONS & MICRO-INTERACTIONS === */
.cta-primary, .cta-secondary, .button, .btn, .cookie-btn {
    transition: background 0.21s, color 0.17s, box-shadow 0.19s, border 0.16s, transform 0.11s;
}
.card, .testimonial-card {
    transition: box-shadow 0.23s, transform 0.14s;
}
.card:hover, .testimonial-card:hover {
    box-shadow: 0 7px 32px 0 #A2D5895c;
    transform: translateY(-3px) scale(1.008);
}

/* === ARTISTIC DECORATIVE TOUCHES === */
.card::before {
    content: '';
    display: block;
    position: absolute;
    top: -12px; right: -16px;
    width: 42px; height: 42px;
    background: #A2D589;
    opacity: 0.13;
    border-radius: 50%;
    z-index: 1;
}
.card::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -10px; left: -12px;
    width: 28px; height: 28px;
    background: #314355;
    opacity: 0.09;
    border-radius: 50%;
    z-index: 0;
}

/* === FAQS, BLOCKQUOTES, ETC. === */
blockquote, q {
    font-style: italic;
    color: #507E32;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #A2D589;
    margin-bottom: 18px;
}

/* === Z-INDEX LAYERING === */
header { z-index: 1000; position: sticky; top: 0; }
.mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 2000; }

/* === PRINT STYLES (FALLBACK) === */
@media print {
    header, nav, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
    main, .container, section, .content-wrapper { width: 100%; max-width: none; padding: 0 !important; }
}

/* === END CREATIVE ARTISTIC FUZZY MOUNTAIN STYLE.CSS === */
