/* =======================================================
   Dusk Journey Style CSS (Warm & Friendly, Flexbox Only)
   =======================================================
   REMEMBER: NO GRID, NO COLUMNS – FLEXBOX ONLY
   =======================================================
*/
/* --- 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;
    height: 100%;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    min-height: 100vh;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #223149;
    background: #FAF7F3;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
ul, ol {
    padding-left: 24px;
}
a {
    color: #6E8B6F;
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #223149;
    outline: none;
}
strong, b {
    font-weight: 700;
}
/* --- COLOR VARIABLES (with safe fallbacks) --- */
:root {
    --color-primary: #223149;
    --color-secondary: #6E8B6F;
    --color-accent: #F9F6F2;
    --color-warm1: #FFD8A9;
    --color-warm2: #FECFAB;
    --color-warm3: #FCF3DD;
    --color-neutral: #FAF7F3;
    --color-body: #223149;
    --color-light-text: #6E8B6F;
    --color-card-bg: #fff;
    --color-shadow: rgba(158, 125, 84, 0.09);
    --color-border: #F5EBDD;
}
/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3, h4 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: #223149;
    font-weight: 700;
    letter-spacing: -0.5px;
}
h1 {
    font-size: 2.5rem; /* 40px */
    margin-bottom: 16px;
    line-height: 1.15;
}
h2 {
    font-size: 2rem; /* 32px */
    margin-bottom: 12px;
    line-height: 1.2;
}
h3 {
    font-size: 1.5rem; /* 24px */
    margin-bottom: 8px;
    line-height: 1.25;
}
h4 {
    font-size: 1.125rem; /* 18px */
    margin-bottom: 8px;
}
.subheadline, .subline {
    font-size: 1.15rem; /* 18.4px */
    color: #6E8B6F;
    font-family: 'Open Sans', Arial, sans-serif;
    margin-bottom: 20px;
}
p {
    margin-bottom: 16px;
    color: #223149;
}
.legal-content p, .legal-content ul, .legal-content li {
    font-size: 1rem; /* 16px */
    color: #223149;
}
/* =========================
   LAYOUT
   ========================= */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}
.content-wrapper {
    width: 100%;
}
main {
    padding-bottom: 80px;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: var(--color-card-bg);
    border-radius: 18px;
    box-shadow: 0 3px 18px var(--color-shadow);
    padding: 24px;
    transition: box-shadow 0.2s;
}
.card:hover {
    box-shadow: 0 7px 32px 0 rgba(158,125,84,0.19);
}
.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: #FCF3DD;
    border-radius: 18px;
    box-shadow: 0 2px 12px var(--color-shadow);
    margin-bottom: 20px;
    color: #223149;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background: var(--color-card-bg);
    border-radius: 16px;
    box-shadow: 0 2px 14px var(--color-shadow);
    padding: 24px 20px 20px 20px;
    margin-bottom: 20px;
    min-width: 220px;
    transition: box-shadow 0.16s;
}
.feature-item:hover {
    box-shadow: 0 8px 30px rgba(158,125,84,0.17);
}
/* =========================
   HEADER, NAVIGATION
   ========================= */
header {
    background: #fff;
    box-shadow: 0 1px 12px 0 var(--color-shadow);
    position: relative;
    z-index: 100;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}
.logo img {
    height: 46px;
    min-width: 100px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.main-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 1rem;
    padding: 6px 8px;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
    background: var(--color-warm2);
    color: var(--color-secondary);
}
.cta-primary {
    display: inline-block;
    background: linear-gradient(90deg,#FFD8A9 0%,#FECFAB 100%);
    color: #223149;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.075rem;
    padding: 14px 32px;
    border: none;
    border-radius: 28px;
    box-shadow: 0 2px 14px var(--color-shadow);
    cursor: pointer;
    text-align: center;
    transition: background 0.18s, box-shadow 0.18s, color 0.18s;
    margin-left: 20px;
}
.cta-primary:hover, .cta-primary:focus {
    background: #FECFAB;
    color: var(--color-secondary);
    box-shadow: 0 6px 18px #ecd7b6;
}
.cta-secondary {
    display: inline-block;
    background: #fff6ea;
    color: var(--color-secondary);
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 26px;
    border: 2px solid #FFD8A9;
    border-radius: 22px;
    transition: background 0.18s, color 0.18s;
    box-shadow: 0 1px 8px var(--color-shadow);
    margin-top: 8px;
}
.cta-secondary:hover, .cta-secondary:focus {
    background: #FFD8A9;
    color: #223149;
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-primary);
    cursor: pointer;
    margin-left: 24px;
    border-radius: 12px;
    padding: 8px 12px;
    transition: background 0.16s;
    z-index: 101;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    background: #FECFAB;
}
/* =========================
   HERO SECTION
   ========================= */
.hero {
    background: linear-gradient(90deg, #FFEDDD 0%, #FFF6EA 100%);
    border-bottom-left-radius: 26px;
    border-bottom-right-radius: 26px;
    box-shadow: 0 8px 28px 2px var(--color-shadow);
    margin-bottom: 54px;
    padding: 56px 0 40px 0;
}
.hero .container {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    gap: 10px;
}
.hero h1 {
    color: var(--color-primary);
    font-size: 2.5rem;
}
.hero .cta-primary {
    margin-top: 22px;
}
/* =========================
   FEATURE GRID & LISTS
   ========================= */
.feature-grid {
    display: flex;
    gap: 28px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.feature-item img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff6ea;
    padding: 6px;
}
.service-list, .destination-list, .step-list {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    list-style: none;
    margin-top: 10px;
    margin-bottom: 18px;
}
.service-list li, .destination-list li {
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px var(--color-shadow);
    padding: 18px 18px 18px 16px;
    font-size: 1.1rem;
}
.service-list img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #FCF3DD;
    padding: 3px;
}
.destination-list h3 {
    margin-bottom: 4px;
    font-size: 1.15rem;
    font-family: 'Montserrat', Arial, sans-serif;
}
.step-list {
    gap: 34px;
}
.step-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #F9F6F2;
    border-radius: 15px;
    padding: 18px 18px 12px 18px;
    box-shadow: 0 2px 11px var(--color-shadow);
    font-weight: 600;
    min-width: 125px;
}
.step-list img {
    width: 32px;
    height: 32px;
    margin-bottom: 0px;
}
/* =========================
   TESTIMONIALS & REVIEWS
   ========================= */
.testimonial-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 10px;
    margin-bottom: 18px;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: #FCF3DD;
    border-radius: 16px;
    padding: 26px 26px 20px 26px;
    box-shadow: 0 2px 16px var(--color-shadow);
    min-width: 220px;
    max-width: 500px;
    color: #223149;
    font-size: 1.1rem;
}
.testimonial-card p {
    font-style: italic;
    color: #223149;
}
.testimonial-meta {
    color: #6E8B6F;
    font-size: 1rem;
}
/* =========================
   FAQ BLOCKS
   ========================= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px var(--color-shadow);
    padding: 20px;
}
.faq-item h3 {
    color: #223149;
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.faq-item p {
    color: #333;
    font-size: 1rem;
}
/* =========================
   CONTACT BLOCKS
   ========================= */
.contact-info-block {
    background: #FCF3DD;
    border-radius: 16px;
    box-shadow: 0 2px 10px var(--color-shadow);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 16px;
}
.contact-info-block p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}
.contact-info-block img {
    width: 22px;
    height: 22px;
    background: #fff6ea;
    border-radius: 8px;
    padding: 1.5px;
}
.info-note {
    background: #fff6ea;
    border-radius: 12px;
    padding: 14px;
    color: #223149;
    font-size: 1rem;
    margin-top: 6px;
    margin-bottom: 8px;
}
/* =========================
   NEXT STEPS (THANK YOU PAGE)
   ========================= */
.next-steps {
    background: #fff6ea;
    border-radius: 14px;
    padding: 20px 18px;
    margin-bottom: 24px;
    box-shadow: 0 1px 7px var(--color-shadow);
}
.next-steps h2 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}
/* =========================
   LEGAL (DATA PRIVACY & ETC)
   ========================= */
.legal-content {
    padding: 18px 0;
}
.legal-content ul {
    list-style: disc inside;
    margin-bottom: 18px;
}
/* =========================
   SEARCH FORM (MOCKUP)
   ========================= */
.search-form-mockup {
    background: #fff6ea;
    border-radius: 16px;
    padding: 22px 18px 26px 18px;
    box-shadow: 0 1px 12px var(--color-shadow);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 220px;
}
.search-form-mockup p {
    margin-bottom: 2px;
    font-size: 1rem;
    font-weight: 600;
}
.search-form-mockup span {
    font-weight: 400;
    color: #6E8B6F;
    font-size: 0.98rem;
    margin-left: 8px;
}
/* =========================
   FOOTER
   ========================= */
footer {
    background: #223149;
    color: #fff;
    padding: 0;
    margin-top: 80px;
}
.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    padding: 38px 0 26px 0;
}
.footer-brand img {
    height: 48px;
}
.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.footer-nav a {
    color: #FFD8A9;
    font-weight: 500;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    transition: color 0.15s;
    border-radius: 9px;
    padding: 5px 9px;
}
.footer-nav a:hover, .footer-nav a:focus {
    color: #FECFAB;
    background: rgba(255,255,255,0.08);
}
.footer-contact {
    color: #FFD8A9;
    font-size: 1rem;
    margin-bottom: 8px;
}
.footer-contact a { color: #FFD8A9; }
.footer-contact a:hover { color: #fff; }
.footer-legal {
    flex-basis: 100%;
    margin-top: 18px;
    color: #FECFAB;
    font-size: 0.95rem;
    text-align: left;
}
/* =========================
   MOBILE MENU
   ========================= */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(34,49,73,0.94);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    padding-top: 24px;
    padding-right: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.24s, pointer-events 0.24s;
}
.mobile-menu.open {
    display: flex;
    pointer-events: all;
    opacity: 1;
}
.mobile-menu-close {
    background: #fff6ea;
    color: #223149;
    font-size: 2rem;
    border: none;
    border-radius: 16px;
    padding: 10px 14px;
    margin-right: 22px;
    margin-bottom: 36px;
    box-shadow: 0 1px 8px #ebb55e30;
    cursor: pointer;
    transition: background 0.17s, color 0.14s;
    z-index: 10000;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
    background: #FFD8A9;
    color: #223149;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    align-items: flex-start;
    padding: 0 38px;
}
.mobile-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #FFD8A9;
    font-size: 1.2rem;
    font-weight: 600;
    background: none;
    padding: 14px 2px 14px 0;
    border-radius: 8px;
    margin: 0 0 4px 0;
    width: 100%;
    transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #fff6ea;
    color: #223149;
}
/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff6ea;
    color: #223149;
    box-shadow: 0 -3px 18px var(--color-shadow);
    padding: 24px 20px 24px 20px;
    z-index: 11000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    font-size: 1.05rem;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    transition: transform 0.23s, opacity 0.22s;
}
.cookie-banner.hide {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}
.cookie-banner .cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 6px;
}
.cookie-btn {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 20px;
    padding: 10px 26px;
    margin-top: 0;
    margin-bottom: 0;
    box-shadow: 0 1px 7px #ebd8b930;
    cursor: pointer;
    transition: background 0.17s, color 0.15s, box-shadow 0.15s;
}
.cookie-btn.accept {
    background: #FFD8A9;
    color: #223149;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
    background: #FECFAB;
    color: #223149;
}
.cookie-btn.reject {
    background: #fff;
    color: #6E8B6F;
    border: 2px solid #FFD8A9;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
    background: #FFD8A9;
    color: #223149;
}
.cookie-btn.settings {
    background: #fff6ea;
    color: #223149;
    border: 2px solid #FECFAB;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
    background: #FECFAB;
}
/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(34, 49, 73, 0.80);
    z-index: 12000;
    display: none;
    justify-content: center;
    align-items: center;
    transition: opacity 0.22s;
}
.cookie-modal-overlay.active {
    display: flex;
    opacity: 1;
}
.cookie-modal {
    background: #fff6ea;
    border-radius: 18px;
    box-shadow: 0 8px 40px 0 rgba(34,49,73,0.11);
    max-width: 380px;
    min-width: 290px;
    width: 87vw;
    padding: 32px 28px 18px 28px;
    color: #223149;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
}
.cookie-modal h2 {
    font-size: 1.35rem;
    margin-bottom: 11px;
}
.cookie-modal .cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cookie-modal .category {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.08rem;
}
.cookie-modal .category input[type=checkbox]:not(:disabled) {
    accent-color: #FFD8A9;
    width: 21px; height: 21px;
    border-radius: 8px;
}
.cookie-modal .cookie-btn-row {
    display: flex;
    gap: 18px;
    margin-top: 26px;
    justify-content: flex-end;
}
.cookie-modal .close {
    position: absolute;
    top: 10px; right: 14px;
    background: none;
    border: none;
    color: #223149;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 12px;
    padding: 3px 10px;
    transition: background 0.13s;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
    background: #FFD8A9;
}
.category.disabled label, .category.disabled {
    color: #bbb;
    opacity: 0.79;
    font-style: italic;
}
/* =========================
   HEATMAP WIDGET (Placebo)
   ========================= */
.heatmap-widget {
    background: #ffeddd;
    color: #223149;
    font-size: 1rem;
    border-radius: 15px;
    padding: 20px 18px;
    margin-top: 16px;
    box-shadow: 0 1px 7px var(--color-shadow);
}
/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (max-width: 1020px) {
    .footer-main {
        gap: 22px;
    }
    .feature-grid {
        gap: 18px;
    }
}
@media (max-width: 900px) {
    .feature-grid, .content-grid, .card-container, .testimonial-list, .service-list, .destination-list, .step-list {
        gap: 14px;
    }
    .footer-main {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    header .container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        padding-top: 7px;
        padding-bottom: 7px;
    }
    .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .footer-main {
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
        padding: 28px 0 18px 0;
    }
    .hero {
        padding: 36px 0 20px 0;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .card, .feature-item, .service-list li, .destination-list li, .testimonial-card, .faq-item, .search-form-mockup, .contact-info-block {
        min-width: unset;
        max-width: 100%;
        padding: 14px 10px 14px 12px;
    }
    .footer-brand img {
        height: 40px;
    }
    .section {
        margin-bottom: 38px;
        padding: 24px 5px;
    }
    .feature-grid, .content-grid, .card-container, .testimonial-list, .service-list, .destination-list, .step-list {
        flex-direction: column;
        align-items: stretch;
    }
    .text-image-section {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}
@media (max-width: 520px) {
    h1 {
        font-size: 1.5rem;
    }
    .hero {
        padding: 21px 0 13px 0;
        margin-bottom: 24px;
    }
    .section {
        margin-bottom: 22px;
        padding: 10px 2px 16px 2px;
    }
    .cookie-banner {
        font-size: 0.97rem;
        padding: 15px 7px 15px 7px;
        border-radius: 15px 15px 0 0;
    }
    .cookie-modal {
        padding: 16px 6px 10px 6px;
        border-radius: 12px;
    }
}

/* ==============================
   MICRO-INTERACTIONS/TRANSITIONS
   ============================== */
.card, .feature-item, .faq-item, .service-list li, .destination-list li, .testimonial-card {
    transition: box-shadow 0.15s, transform 0.12s;
}
.card:hover, .feature-item:hover, .faq-item:hover, .service-list li:hover, .destination-list li:hover, .testimonial-card:hover {
    box-shadow: 0 6px 22px rgba(158,125,84,0.17);
    transform: translateY(-2px) scale(1.013);
}
.cta-primary, .cta-secondary, .cookie-btn {
    transition: box-shadow 0.15s, background 0.19s, color 0.14s;
}
input, textarea, select {
    border-radius: 9px;
    border: 1px solid #FFD8A9;
    padding: 8px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
}
input:focus, textarea:focus, select:focus {
    border-color: #6E8B6F;
    outline: 2px solid #FFD8A9;
}
/* ==============================
   SPACING (Specific Patterns)
   ============================== */
/* Already handled: .section, .card-container, .card, .content-grid, .text-image-section, .testimonial-card, .feature-item */

/* ==============================
   PRINT STYLES
   ============================== */
@media print {
    * { box-shadow: none !important; background: #fff !important; color: #000 !important; }
    header, footer, .cookie-banner, .cookie-modal-overlay { display: none !important; }
    .container { padding: 0 !important; }
}
