/* =====================
   Shiny Glide Domy – Modern Bold Style
   =====================
   Flexbox-only layout, no grid, no columns
   =====================
   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, 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 {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    color: #153C2E;
    background-color: #F7F7F9;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
    border: none;
}
a {
    color: #153C2E;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #85703E;
    outline: none;
}
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}
button {
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

/* =====================
   Typography
   ===================== */
h1, .h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1.13;
    margin-bottom: 16px;
    color: #153C2E;
    letter-spacing: -1px;
}
h2, .h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #153C2E;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
h3, .h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #153C2E;
    margin-bottom: 14px;
    line-height: 1.3;
}
h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #153C2E;
}
strong {
    font-weight: 900;
    color: #153C2E;
}
p {
    font-size: 1rem;
    color: #37413A;
    margin-bottom: 18px;
    line-height: 1.7;
}
.section > .container > .content-wrapper > p:last-child,
.text-section > p:last-child,
li > p:last-child {
    margin-bottom: 0;
}
.text-section ul li strong,
.card strong {
    color: #153C2E;
}

/* =====================
   Layout Containers
   ===================== */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(21, 60, 46, 0.07);
    /* For strong separation */
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(21, 60, 46, 0.09);
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 270px;
    transition: box-shadow 0.22s, transform 0.2s;
}
.card:hover {
    box-shadow: 0 8px 34px rgba(21, 60, 46, 0.14);
    transform: translateY(-2px) scale(1.018);
    z-index: 2;
}

.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;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #F7F7F9;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(21, 60, 46, 0.08);
    margin-bottom: 20px;
    font-size: 1.09rem;
    color: #153C2E;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.16s;
}
.testimonial-card:hover {
    box-shadow: 0 4px 18px rgba(21, 60, 46, 0.14);
    transform: scale(1.012);
}
.testimonial-card span {
    display: block;
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #85703E;
    letter-spacing: 0.01em;
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 2px 0;
    color: #153C2E;
}

/* =====================
   Header & Navigation
   ===================== */
header {
    background: #fff;
    box-shadow: 0 2px 18px rgba(21, 60, 46, 0.09);
    padding: 0 0 0 0;
    position: sticky;
    top: 0;
    z-index: 99;
}
header nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
header nav > a:first-child img {
    height: 42px;
    width: auto;
}
header nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    align-items: center;
    margin-left: 0;  /* fix reset */
}
header nav ul li {
    margin: 0;
}
header nav ul li a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    color: #153C2E;
    font-size: 1rem;
    padding: 7px 12px;
    border-radius: 8px;
    transition: background 0.18s, color 0.16s, box-shadow 0.18s;
}
header nav ul li a:hover, header nav ul li a.active {
    background: #A4926B;
    color: #fff;
    box-shadow: 0 2px 9px rgba(21,60,46,0.09);
}
.cta.primary {
    background: #153C2E;
    color: #fff !important;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    font-size: 1.09rem;
    padding: 13px 28px;
    border: none;
    border-radius: 30px;
    transition: background 0.25s, color 0.18s, transform 0.12s, box-shadow 0.20s;
    box-shadow: 0 3px 12px rgba(21, 60, 46, 0.12);
    margin-left: 18px;
    letter-spacing: 0.03em;
    display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
    background: #85703E;
    color: #fff;
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 7px 18px rgba(133, 112, 62, 0.1);
}
.cta.secondary {
    background: #fff;
    color: #153C2E !important;
    border: 2px solid #85703E;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 11px 24px;
    border-radius: 26px;
    transition: background 0.22s, color 0.12s, box-shadow 0.16s;
    margin-top: 14px;
    margin-bottom: 8px;
    display: inline-block;
}
.cta.secondary:hover, .cta.secondary:focus {
    background: #85703E;
    color: #fff !important;
    box-shadow: 0 7px 15px rgba(133,112,62,0.13);
}

.mobile-menu-toggle {
    background: #153C2E;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    border: none;
    padding: 8px 18px;
    border-radius: 10px;
    display: none;
    position: relative;
    z-index: 120;
    transition: background 0.19s, color 0.15s, transform 0.12s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: #85703E;
    color: #fff;
    transform: scale(1.08);
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    background: #153C2E;
    transform: translateX(100%);
    transition: transform 0.36s cubic-bezier(0.78,0.06,0.24,0.93);
    z-index: 1999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    box-shadow: -5px 0 28px rgba(21, 60, 46, 0.22);
    visibility: hidden;
}
.mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
}
.mobile-menu-close {
    background: transparent;
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    border: none;
    margin: 28px 32px 0 0;
    align-self: flex-end;
    cursor: pointer;
    transition: color 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
    color: #A4926B;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin: 32px 0 0 45px;
}
.mobile-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
    padding: 8px 2px;
    transition: color 0.18s, transform 0.14s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
    color: #A4926B;
    transform: translateX(4px) scale(1.05);
}

/* Hamburger visible on mobile */
@media (max-width: 1020px) {
  header nav ul,
  header nav .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}


/* =====================
   Hero Sections
   ===================== */
.hero {
    background: #153C2E;
    color: #fff;
    min-height: 330px;
    display: flex;
    align-items: center;
    flex: 1 0 auto;
    border-radius: 0 0 36px 36px;
    padding: 0;
}
.hero .container {
    padding: 30px 20px 44px 20px;
}
.hero h1, .hero p {
    color: #fff;
}
.hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -1.4px;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 28px;
    line-height: 1.7;
}
.hero .cta.primary {
    background: #85703E;
    color: #fff !important;
    box-shadow: 0 5px 18px rgba(21,60,46,0.11);
    font-size: 1.1rem;
}
.hero .cta.primary:hover, .hero .cta.primary:focus {
    background: #fff;
    color: #153C2E !important;
    outline: 2px solid #85703E;
}

/* =====================
   List & Feature Presentation
   ===================== */
.section ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 10px;
}
.section ul li {
    flex: 1 0 200px;
    background: #fff;
    color: #153C2E;
    border-radius: 15px;
    box-shadow: 0 1px 8px rgba(21,60,46,0.07);
    padding: 22px 20px;
    margin-right: 0;
    margin-bottom: 0;
    min-width: 225px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 1.01rem;
    font-weight: 500;
    transition: box-shadow 0.14s, transform 0.13s;
}
.section ul li img {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
}
.section ul li strong {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.1rem;
    color: #85703E;
}
.section ul li:hover {
    box-shadow: 0 8px 24px rgba(21,60,46,0.10);
    transform: scale(1.016);
    z-index: 1;
}

.text-section ul {
    gap: 14px;
}
.text-section ul li {
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0 0;
    font-size: 1rem;
    font-weight: 400;
}
.text-section ul li strong {
    color: #153C2E;
    font-size: 1.07rem;
}

/* =====================
   Footer
   ===================== */
footer {
    background: #153C2E;
    color: #fff;
    padding: 34px 0 0 0;
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    margin-top: 60px;
}
footer p {
    color: white;
}
footer nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 26px 0 26px;
    flex-wrap: wrap;
    gap: 18px;
}
footer nav > a img {
    height: 42px;
    filter: brightness(138%);
}
footer nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
footer nav ul li a {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 6px 10px;
    border-radius: 7px;
    transition: background 0.19s, color 0.13s;
}
footer nav ul li a:hover, footer nav ul li a:focus {
    background: #85703E;
    color: #fff;
}
.footer-info {
    text-align: center;
    padding: 18px 6px 28px 6px;
    font-size: 0.97rem;
    color: #F7F7F9;
}

/* =====================
   Cookie Consent Banner
   ===================== */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #153C2E;
    color: #fff;
    padding: 24px 14px 24px 14px;
    box-shadow: 0 -4px 25px rgba(21,60,46,0.21);
    z-index: 2999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    font-size: 1.02rem;
    flex-wrap: wrap;
    transition: transform 0.32s;
}
.cookie-banner button {
    margin-left: 7px;
}
.cookie-banner .cookie-btn {
    font-family: 'Montserrat',Arial,sans-serif;
    font-weight: 700;
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 1rem;
    margin-right: 4px;
    border: none;
    transition: background 0.19s, color 0.12s, box-shadow 0.15s;
}
.cookie-btn.accept {
    background: #85703E;
    color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
    background: #A4926B;
    color: #fff;
    box-shadow: 0 5px 15px rgba(133,112,62,0.19);
}
.cookie-btn.reject {
    background: #fff;
    border: 2px solid #85703E;
    color: #153C2E;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
    background: #F1EADA;
    color: #85703E;
}
.cookie-btn.settings {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
    background: #85703E;
    border-color: #85703E;
    color: #fff;
}

/* Modal for cookie settings */
.cookie-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(21,60,46,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s;
}
.cookie-modal.open {
    opacity: 1;
    pointer-events: auto;
}
.cookie-modal-content {
    background: #fff;
    color: #153C2E;
    padding: 38px 26px 30px 26px;
    border-radius: 18px;
    width: 98%;
    max-width: 440px;
    box-shadow: 0 8px 30px rgba(21,60,46,0.19);
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    position: relative;
}
.cookie-modal-content h2 {
    margin-bottom: 0.4em;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
}
.cookie-modal-content .modal-close {
    position: absolute;
    top: 14px;
    right: 15px;
    background: transparent;
    font-size: 1.5rem;
    color: #153C2E;
    border: none;
    cursor: pointer;
    transition: color 0.13s;
}
.cookie-modal-content .modal-close:hover {
    color: #85703E;
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}
.cookie-category .toggle {
    margin-left: auto;
    font-size: 1.12rem;
}
.cookie-category label {
    font-weight: 600;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.05rem;
}
.cookie-category .toggle[disabled] {
    opacity: 0.6;
    pointer-events: none;
}

/* =====================
   Utilities
   ===================== */
.text-center {
    text-align: center;
}
.d-flex {
    display: flex;
}
.flex-column {
    flex-direction: column;
}
.flex-row {
    flex-direction: row;
}
.gap-20 {
    gap: 20px;
}
.gap-24 {
    gap: 24px;
}
.mt-32 {
    margin-top: 32px;
}
.mb-32 {
    margin-bottom: 32px;
}
.rounded-18 {
    border-radius: 18px;
}
.bg-accent {
    background: #85703E;
    color: #fff;
}
.bg-primary {
    background: #153C2E !important;
    color: #fff !important;
}
.bg-secondary {
    background: #F7F7F9 !important;
}

/* =====================
   Responsive
   ===================== */
@media (max-width: 1024px) {
    .container {
        max-width: 98vw;
        padding: 0 12px;
    }
    header nav {
        padding: 13px 10px;
        gap: 14px;
    }
    .card {
        min-width: 180px;
        padding: 24px 12px;
    }
}
@media (max-width: 768px) {
    .container {
        max-width: 100vw;
        padding: 0 5px;
    }
    .section {
        margin-bottom: 38px;
        padding: 22px 4px;
        border-radius: 13px;
    }
    .content-wrapper {
        gap: 14px;
    }
    .text-image-section, .feature-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 18px;
    }
    .card-container, .content-grid, .section ul {
        gap: 8px;
    }
    .card {
        min-width: 125px;
        font-size: 0.98rem;
        padding: 18px 8px;
    }
    .testimonial-card {
        font-size: 0.97rem;
        padding: 15px 7px;
        margin-bottom: 13px;
        gap: 8px;
    }
    .cookie-modal-content {
        padding: 19px 7px 19px 12px;
    }
    footer {
        padding: 18px 0 0 0;
    }
    footer nav {
        flex-direction: column;
        gap: 4px;
        padding: 0 8px 0 8px;
    }
    footer nav ul {
        gap: 8px;
    }
    .footer-info {
        padding: 7px 4px 8px 4px;
        font-size: 0.92rem;
    }
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    .hero .container {
        padding: 16px 4px 25px 4px;
    }
}
@media (max-width: 580px) {
    h1, .h1 { font-size: 1.6rem; }
    h2, .h2 { font-size: 1.27rem; }
    .hero {
        min-height: 160px;
        padding: 0;
        border-radius: 0 0 22px 22px;
    }
    .section {
        margin-bottom: 23px;
        padding: 12px 0;
    }
    .card, .testimonial-card, .content-grid .card, .feature-item {
        min-width: 80vw;
    }
}

/* =====================
   Animations & States
   ===================== */
.card, .testimonial-card, .section ul li, .cta.primary, .cta.secondary, .cookie-btn, .mobile-menu, .mobile-menu-close {
    will-change: transform, box-shadow;
}
.cta.primary, .cta.secondary, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
    transition: background 0.22s, color 0.14s, box-shadow 0.18s, transform 0.13s;
}

/* =====================
   Custom Scrollbars
   ===================== */
::-webkit-scrollbar {
    width: 12px;
    background: #F7F7F9;
}
::-webkit-scrollbar-thumb {
    background: #A4926B;
    border-radius: 10px;
}

/* =====================
   Hide cookie/modal on close
   ===================== */
.cookie-banner.hide {
    transform: translateY(100%);
    transition: transform 0.35s;
}
.cookie-modal.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

/* =====================
   Accessibility: Focus Styles
   ===================== */
a:focus, button:focus {
    outline: 2.5px solid #85703E;
    outline-offset: 2px;
}

/* =====================
   Geometric Decorative
   ===================== */
.section {
    position: relative;
    overflow: visible;
}
.section:before {
    content: '';
    display: block;
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 18px 2px 17px 7px;
    background: #F7F7F9;
    top: -19px;
    left: -19px;
    z-index: 0;
    opacity: 0.26;
}
.section:after {
    content: '';
    display: block;
    position: absolute;
    width: 19px;
    height: 19px;
    border-radius: 10px 4px 8px 3px;
    background: #85703E;
    bottom: -9px;
    right: -9px;
    z-index: 0;
    opacity: 0.18;
}

/* Don't clip content */
.section > * {
    position: relative;
    z-index: 2;
}

/* =====================
   Ensure No Overlap
   ===================== */
.section > .container > .content-wrapper > * + *,
.content-wrapper > * + * {
    margin-top: 0px;
}
.section ul li + li, .card + .card, .testimonial-card + .testimonial-card {
    margin-top: 0;
}

/* =====================
   Print Fixes if needed
   ===================== */
@media print {
    * {
        background: #fff !important;
        color: #000 !important;
        box-shadow: none !important;
    }
    a, a:visited {
        text-decoration: underline;
    }
    .mobile-menu, .cookie-banner, .cookie-modal {
        display: none !important;
    }
}

/* =====================
   End of Modern Bold CSS
   ===================== */
