/* ==== 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, 
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 {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    min-height: 100vh;
    background: #F3F4F6;
    color: #253A60;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    display: inline-block;
}
a {
    color: #1F8A70;
    text-decoration: none;
    transition: color .2s;
}
a:focus, a:hover {
    color: #253A60;
    outline: none;
}
ul, ol {
    list-style: none;
}
button, input, textarea, select {
    font-family: inherit;
    font-size: 100%;
    outline: none;
    border: none;
    background: none;
    color: inherit;
}
button, .cta-button {
    cursor: pointer;
}

/* ==== BRAND TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    color: #253A60;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.5rem; margin-bottom: 14px; }
h4 { font-size: 1.2rem; margin-bottom: 8px; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.1rem; }
}

p, li, ul, ol {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    letter-spacing: 0px;
    margin-bottom: 12px;
    color: #253A60;
}
strong {
    font-weight: 700;
}

/* ==== CONTAINER & STRUCTURED LAYOUTS ==== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (min-width: 992px) {
    .content-wrapper {
        gap: 24px;
    }
}

/* ==== SPACING & SECTION PATTERNS ==== */
.section, section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(31,138,112,0.08);
    padding: 32px 28px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
    box-shadow: 0 8px 32px rgba(37,58,96,0.14);
    transform: translateY(-2px) 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;
}
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(37,58,96,0.08);
    margin-bottom: 20px;
    transition: box-shadow .2s, transform .2s;
}
.testimonial-card:hover {
    box-shadow: 0 6px 18px rgba(31,138,112,0.10);
    transform: scale(1.01);
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.blog-entry, .case-study-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(31,138,112,0.06);
    padding: 24px 22px;
    margin-bottom: 20px;
    transition: box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.blog-entry:hover, .case-study-card:hover {
    box-shadow: 0 6px 20px rgba(37,58,96,0.14);
}

.faq-accordion h3 {
    font-size: 1.1rem;
    margin-bottom: 7px;
    margin-top: 24px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    cursor: pointer;
    color: #1F8A70;
}
.faq-accordion p {
    margin-left: 16px;
    margin-bottom: 16px;
    color: #253A60;
}
.category, .tags {
    display: inline-block;
    font-size: 0.94rem;
    padding: 4px 16px;
    background: #1F8A70;
    color: #fff;
    border-radius: 50px;
    margin-top: 10px;
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    section, .section {
        padding: 28px 6px;
    }
    .content-grid, .card-container {
        flex-direction: column;
        gap: 20px;
    }
    .text-image-section {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
}

/* ==== GEOMETRIC & STRUCTURED ELEMENTS ==== */
.logo img {
    height: 48px;
    width: auto;
    display: block;
    margin-right: 16px;
}
header nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}
@media (max-width: 768px) {
    header nav {
        display: none;
    }
}
.cta-button {
    min-width: 170px;
    background: #1F8A70;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    text-align: center;
    border-radius: 0 20px 0 20px;
    border: 2.5px solid #253A60;
    letter-spacing: 0.06em;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 10px rgba(37,58,96,0.07);
    transition: background 0.18s, color 0.14s, box-shadow 0.15s, border-color 0.25s;
    display: inline-block;
    margin-top: 10px;
}
.cta-button:hover, .cta-button:focus {
    background: #253A60;
    color: #fff;
    border-color: #1F8A70;
    box-shadow: 0 4px 16px rgba(31,138,112,0.13);
}

/* ==== NAVIGATION BAR & HEADER ==== */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(31,138,112,0.06);
    position: relative;
    z-index: 50;
}
header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding-top: 14px;
    padding-bottom: 14px;
    justify-content: space-between;
}
header .logo {
    margin-right: 24px;
}
header nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    color: #253A60;
    padding: 9px 18px;
    border-radius: 10px;
    transition: background 0.15s, color 0.14s, box-shadow 0.16s;
    text-transform: uppercase;
    font-weight: 600;
}
header nav a:hover, header nav a:focus {
    background: #F3F4F6;
    box-shadow: 0 2px 12px rgba(37,58,96,0.09);
    color: #1F8A70;
}
header nav a.cta-button {
    margin-left: 12px;
    text-transform: none;
    padding: 10px 28px;
    border-radius: 0 19px 0 19px;
}

/* MOBILE MENU BUTTON (BURGER) */
.mobile-menu-toggle {
    display: block;
    background: #1F8A70;
    color: #fff;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 16px;
    font-size: 2rem;
    justify-content: center;
    align-items: center;
    transition: background .14s;
    margin-left: 18px;
    z-index: 90;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #253A60;
    color: #F3F4F6;
}
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* ==== MOBILE MENU OVERLAY ==== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    background: #F3F4F6;
    box-shadow: -2px 0 32px rgba(37,58,96,0.18);
    z-index: 999;
    transform: translateX(100vw);
    transition: transform 0.33s cubic-bezier(.6,.2,0,1) 0s;
    padding: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}
.mobile-menu.open {
    display: flex;
    transform: translateX(0);
}
.mobile-menu-close {
    background: none;
    color: #1F8A70;
    font-size: 2rem;
    border: none;
    margin: 22px 32px 12px auto;
    cursor: pointer;
    transition: color .18s;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu-close:hover {
    color: #253A60;
    background: #E6E7EA;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 12px 38px 24px 38px;
    font-family: 'Montserrat', Arial, sans-serif;
}
.mobile-nav a {
    color: #253A60;
    padding: 14px 6px 14px 0px;
    font-size: 1.18rem;
    border-radius: 6px;
    font-weight: 600;
    transition: color 0.14s, background 0.13s;
    border-left: 6px solid transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #E6E7EA;
    color: #1F8A70;
    border-left: 6px solid #1F8A70;
}

/* VISIBILITY: Only Show on Mobile */
@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }
}

/* ==== HERO / FEATURE ICONS LIST ==== */
ul li, .feature-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 1.01rem;
    background: none;
    border-radius: 6px;
    font-family: 'Roboto', Arial, sans-serif;
}
ul li img {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #F3F4F6;
    padding: 4px;
    box-shadow: 0 2px 4px rgba(31,138,112,0.03);
}

@media (max-width: 600px) {
    ul li img { width: 28px; height: 28px; }
}

/* ==== FOOTER ==== */
footer {
    background: #253A60;
    color: #fff;
    padding: 32px 0 20px 0;
    font-size: 1rem;
}
footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}
footer .container > div {
    display: flex;
    align-items: center;
    gap: 16px;
}
footer nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
footer nav a {
    color: #F3F4F6;
    font-family: 'Montserrat', Arial, sans-serif;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 1rem;
    transition: background .19s, color .13s;
}
footer nav a:hover {
    background: #1F8A70;
    color: #fff;
}
footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 1rem;
}
footer .contact-info span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #F3F4F6;
    font-size: 0.92rem;
}
footer .contact-info img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1) opacity(0.83);
}
footer .container img {
    width: 48px;
    height: auto;
    margin-right: 8px;
}
@media (max-width: 850px) {
    footer .container { flex-direction: column; gap: 18px; align-items: flex-start; }
}

/* ==== CONTACT DETAILS ==== */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px;
    margin-bottom: 16px;
}
.contact-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.04rem;
}

.map-placeholder {
    margin: 24px 0 12px 0;
    background: #E6E7EA;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    box-shadow: 0 2px 8px rgba(37,58,96,0.07);
    overflow: hidden;
}
@media (max-width: 768px) {
    .map-placeholder {
        min-height: 72px;
        margin: 14px 0 8px 0;
    }
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 560px) {
    .card, .blog-entry, .case-study-card, .testimonial-card { padding: 14px 8px; }
}

/* ==== MICRO-INTERACTIONS ==== */
.card, .testimonial-card, .blog-entry, .case-study-card {
    transition: box-shadow 0.16s, transform 0.18s;
}
.card:hover, .blog-entry:hover, .case-study-card:hover, .testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(31,138,112,0.17);
}

.button, button, .cta-button {
    outline: none;
    border: none;
    transition: box-shadow .18s, background .18s, color .16s, transform .14s;
}
button:active, .cta-button:active {
    transform: scale(0.96);
}

/* ==== FAQ ACCORDION STYLES (STATIC for no JS, yet styled) ==== */
.faq-accordion h3 {
    position: relative;
    padding-left: 20px;
}
.faq-accordion h3::before {
    content: '\25B8';
    color: #1F8A70;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 1px;
    transition: transform .22s;
}
.faq-accordion h3.open::before {
    transform: rotate(90deg);
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    background: #253A60;
    color: #fff;
    padding: 22px 16px 22px 16px;
    box-shadow: 0 -4px 24px rgba(31,138,112,0.13);
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    font-size: 1.06rem;
    font-family: 'Roboto', Arial, sans-serif;
    animation: cookie-slide-in .7s cubic-bezier(.48,.2,0,1.02);
}
@keyframes cookie-slide-in {
    from { transform: translateY(120%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
    display: flex;
    gap: 14px;
}
.cookie-banner button {
    background: #fff;
    color: #253A60;
    border-radius: 10px;
    font-weight: 600;
    padding: 11px 23px;
    margin-top: 4px;
    font-family: 'Montserrat', Arial, sans-serif;
    transition: background .15s, color .17s, box-shadow .17s;
    border: 2px solid #1F8A70;
}
.cookie-banner button:hover, .cookie-banner button:focus {
    background: #1F8A70;
    color: #fff;
    border-color: #253A60;
    box-shadow: 0 2px 8px rgba(37,58,96,0.11);
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal {
    position: fixed;
    z-index: 1200;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(37,58,96,0.33);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadein-bg .32s;
}
@keyframes fadein-bg { from { opacity:0; } to { opacity: 1;}}
.cookie-modal .modal-content {
    background: #fff;
    color: #253A60;
    border-radius: 18px;
    max-width: 400px;
    min-width: 300px;
    padding: 30px 28px 24px 28px;
    box-shadow: 0 8px 38px rgba(37,58,96,0.21);
    animation: fadein-modal .38s cubic-bezier(.36,.27,0,1.06);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
@keyframes fadein-modal { from { transform: scale(0.85) translateY(20px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1;}}
.cookie-modal h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.43rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.cookie-modal .cookie-category {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 11px 0;
}
.cookie-modal .category-label {
    flex: 1;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
    accent-color: #1F8A70;
    width: 18px;
    height: 18px;
}
.cookie-modal input[disabled] {
    accent-color: #A6A8B6;
    cursor: not-allowed;
}
.cookie-modal .modal-footer {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
}
.cookie-modal .modal-close {
    position: absolute;
    top: 13px; right: 18px;
    background: none;
    border: none;
    font-size: 1.7rem;
    color: #1F8A70;
    cursor: pointer;
    border-radius: 50%;
    width: 34px; height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .16s;
}
.cookie-modal .modal-close:hover {
    background: #F3F4F6;
}
@media (max-width: 500px) {
    .cookie-modal .modal-content {
        padding: 18px 8px 14px 8px;
        min-width: 90vw;
    }
}

/* ==== GEOMETRIC DETAILS / DECORATIVE ==== */
section, .card, .blog-entry, .case-study-card, .testimonial-card {
    /* Polygonal/faceted border using box-shadow and border radius for geometric style */
    border-radius: 20px 40px 16px 28px / 27px 16px 34px 40px;
}
@media (max-width: 768px) {
    section, .card, .blog-entry, .case-study-card, .testimonial-card {
        border-radius: 14px 18px 20px 22px / 17px 14px 22px 18px;
    }
}

/* ==== CUSTOM SCROLLBARS ==== */
body, .mobile-menu, .cookie-modal {
    scrollbar-color: #1F8A70 #F3F4F6;
    scrollbar-width: thin;
}
body::-webkit-scrollbar {
    width: 10px;
    background: #F3F4F6;
}
body::-webkit-scrollbar-thumb {
    background: #1F8A70;
    border-radius: 12px;
}

/* ==== FOCUS STYLES ==== */
a:focus, button:focus, .cta-button:focus, .mobile-menu-close:focus, .modal-close:focus {
    outline: 2.5px solid #1F8A70;
    outline-offset: 2px;
}

/* ==== Z-INDEX CONTROL ==== */
header, .cookie-banner, .cookie-modal { z-index: 1200; }

/* ===== END OF STYLE.css?v2 FOR SPARKLE JOURNEYS GEOMETRIC_STRUCTURED DESIGN ===== */
