/* === 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;
    font-size: 16px;
    scroll-behavior: smooth;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    background: #F8FAFF;
    font-family: 'Roboto', Arial, sans-serif;
    color: #21374F;
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: #21374F;
    text-decoration: none;
    transition: color 0.15s;
}

/* === BRAND COLORS (Soft Pastel palette) === */
:root {
    --primary: #21374F;
    --secondary: #6EC1E4;
    --accent: #FFD600;
    --pastel-pink: #FFE9EC;
    --pastel-blue: #E4F2FA;
    --pastel-mint: #D1FFF2;
    --pastel-lemon: #FFF9DD;
    --pastel-peach: #FFF4E1;
    --pastel-grey: #EEF1F7;
    --white: #fff;
    --dark: #21374F;
    --border: #E4F2FA;
    --shadow: 0 6px 20px 0 rgba(195,213,241,0.13);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--dark);
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.18; margin-bottom: 24px; }
h2 { font-size: 1.8rem; line-height: 1.22; margin-bottom: 20px; }
h3 { font-size: 1.25rem; line-height: 1.25; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1.1rem; line-height: 1.3; }
p, ul, ol { margin-bottom: 16px; }
ul, ol { padding-left: 20px; }
strong, b { font-weight: 700; }
.brand-tagline {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary);
    display: inline-block;
    background: var(--pastel-mint);
    border-radius: 12px;
    padding: 4px 16px;
    margin-bottom: 16px;
}

/* === LAYOUT CONTAINERS === */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}
.content-wrapper {
    max-width: 960px;
    margin: 0 auto;
}

.section {
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 24px;
    margin-bottom: 60px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* === FLEX SPACING/ALIGNMENT PATTERNS (CRITICAL) === */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    border-radius: 18px;
    background: var(--pastel-blue);
    box-shadow: var(--shadow);
    padding: 32px 24px 24px 24px;
    flex: 1 1 320px;
    min-width: 270px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--border);
    transition: box-shadow 0.15s, background 0.2s;
}
.card:hover {
    box-shadow: 0 3px 18px 0 rgba(110,193,228,0.18);
    background: var(--pastel-mint);
}
.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: var(--pastel-peach);
    border-radius: 18px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px 0 rgba(225, 180, 120, 0.07);
    border: 1px solid var(--pastel-lemon);
    color: var(--dark);
    font-size: 1rem;
    position: relative;
}
.testimonial-card p {
    flex: 1 1 auto;
    color: var(--dark);
    margin-bottom: 0;
}
.testimonial-card span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-left: 12px;
    white-space: nowrap;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* === HEADER & NAVIGATION === */
header {
    background: var(--pastel-blue);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 8px 0 rgba(110,193,228,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}
header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: 70px;
}
header a img {
    height: 40px;
    width: auto;
}
nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.05rem;
}
nav a {
    padding: 4px 10px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a:focus {
    background: var(--pastel-pink);
    color: var(--secondary);
}
.cta-button {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    background: linear-gradient(90deg, #FFD600 60%, #FFF4E1 100%);
    color: var(--dark);
    padding: 13px 32px;
    border-radius: 24px;
    box-shadow: 0 2px 10px 0 rgba(255,214,0,0.11);
    border: none;
    cursor: pointer;
    text-shadow: none;
    letter-spacing: 0.02em;
    margin-left: 16px;
    transition: background 0.15s, color 0.15s, box-shadow 0.17s;
}
.cta-button:hover, .cta-button:focus {
    background: linear-gradient(90deg, #FFD600 85%, #FFE9EC 100%);
    color: #3A1E00;
    box-shadow: 0 4px 28px 0 rgba(255,214,0,0.19);
    outline: none;
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
    margin-left: 12px;
    transition: color 0.18s;
}
.mobile-menu-toggle:focus {
    outline: 2px solid var(--secondary);
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(228,242,250,0.98);
    z-index: 300;
    transform: translateX(100%);
    transition: transform 0.33s cubic-bezier(.77,0,.18,1);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 20px;
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary);
    padding: 18px 20px 8px 0;
    cursor: pointer;
}
.mobile-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 22px;
    gap: 12px;
    align-items: stretch;
    padding: 36px 32px 0 32px;
}
.mobile-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.2rem;
    background: var(--pastel-lemon);
    color: var(--primary);
    border-radius: 16px;
    padding: 14px 12px;
    margin-bottom: 4px;
    transition: background 0.13s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--accent);
    color: var(--dark);
}

@media (max-width: 1020px) {
    nav {
        gap: 14px;
        font-size: 0.99rem;
    }
    .cta-button {
        font-size: 1rem;
        padding: 11px 24px;
        margin-left: 8px;
    }
}
@media (max-width: 850px) {
    header .container nav, header .container .cta-button {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
}
@media (max-width: 768px) {
    .container, .content-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .section {
        margin-bottom: 44px;
        padding: 28px 8px;
    }
    .card-container, .content-grid {
        flex-direction: column;
        gap: 20px;
    }
    .card {
        min-width: 0;
        max-width: 100%;
        padding: 20px 12px 16px 12px;
    }
    .text-image-section {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .testimonial-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* === SERVICES AND CARDS === */
.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
    margin-top: 10px;
    justify-content: flex-start;
}
.service-card {
    flex: 1 1 250px;
    min-width: 210px;
    max-width: 320px;
    background: var(--pastel-pink);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 32px 20px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid var(--pastel-lemon);
    margin-bottom: 20px;
    position: relative;
    transition: box-shadow 0.17s, background 0.17s;
}
.service-card:hover {
    background: var(--pastel-mint);
    box-shadow: 0 6px 24px 0 rgba(124,227,177,0.11);
}
.service-card h3 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 700;
}
.service-card strong {
    color: var(--primary);
    font-size: 1.04rem;
    font-weight: 700;
}

/* === LISTS & DETAILS CARDS === */
.luxury-experiences {
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 13px;
    background: var(--pastel-mint);
    box-shadow: 0 1px 8px 0 rgba(98,210,197,0.10);
}
.contact-details, .contact-info, .company-details, .visit-details, .contact-brief {
    margin: 20px 0 10px 0;
    font-size: 1.07rem;
    background: var(--pastel-lemon);
    padding: 18px 18px;
    border-radius: 12px;
    color: var(--primary);
}

/* === FOOTER === */
footer {
    background: var(--pastel-grey);
    border-top: 1px solid var(--border);
    padding-top: 34px;
    padding-bottom: 28px;
}
footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 90px;
}
.footer-brand img {
    height: 38px;
}
.footer-menu {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
}
.footer-menu a {
    color: var(--primary);
    background: var(--white);
    border-radius: 9px;
    padding: 5px 13px;
    transition: background 0.12s, color 0.18s;
}
.footer-menu a:hover {
    background: var(--pastel-lemon);
    color: var(--secondary);
}
footer .contact-brief {
    font-size: 0.99rem;
    background: transparent;
    padding: 0;
    color: var(--primary);
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
    padding-left: 10px;
    padding-right: 10px;
    min-height: unset;
  }
  .footer-menu {
    font-size: 0.97rem;
  }
}

/* === LIST STYLES === */
ul, ol {
    margin-bottom: 14px;
}
ul li, ol li {
    margin-bottom: 8px;
    padding-left: 2px;
    font-size: 1.05rem;
}
ul li::marker {
    color: var(--secondary);
    font-size: 1.1em;
}

/* === ANIMATIONS === */
a, .cta-button, .service-card, .card, .testimonial-card, .mobile-nav a {
    transition: all 0.18s cubic-bezier(.32,.58,.65,1.12);
}

/* === FOCUS OUTLINE === */
:focus {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    background: var(--pastel-blue);
    color: var(--primary);
    box-shadow: 0 -2px 14px 0 rgba(110, 193, 228, 0.14);
    z-index: 400;
    padding: 23px 20px 18px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    font-size: 1.05rem;
}
.cookie-banner p {
    margin: 0;
    flex: 1 1 220px;
}
.cookie-actions {
    display: flex;
    gap: 16px;
}
.cookie-button, .cookie-settings-button {
    font-family: 'Montserrat', Arial, sans-serif;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 16px;
    padding: 12px 24px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.13s, color 0.16s, box-shadow 0.14s;
}
.cookie-button.rejected {
    background: var(--pastel-peach);
    color: #A87655;
}
.cookie-settings-button {
    background: var(--secondary);
    color: #fff;
}
.cookie-button:hover, .cookie-settings-button:hover {
    filter: brightness(1.09);
    box-shadow: 0 2px 14px 0 rgba(110,193,228,0.12);
}

/* Cookie modal */
.cookie-modal-overlay {
    position: fixed;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(33,55,79,0.16);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.23s cubic-bezier(.32,.58,.65,1.12);
}
.cookie-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.cookie-modal {
    background: var(--white);
    border-radius: 24px;
    padding: 38px 22px 24px 22px;
    min-width: 320px;
    max-width: 92vw;
    box-shadow: 0 8px 38px 0 rgba(110,193,228,0.21);
    position: relative;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.cookie-modal h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--secondary);
}
.cookie-category {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.cookie-category label {
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--primary);
}
.cookie-category input[type="checkbox"]:disabled + label {
    color: #aaa;
}
.cookie-modal-actions {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}
.cookie-modal-close {
    position: absolute; 
    right: 16px; top: 12px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--secondary);
    cursor: pointer;
}

@media (max-width: 620px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 17px 8px 12px 8px;
        font-size: 0.98rem;
    }
    .cookie-actions {
        gap: 11px;
    }
    .cookie-modal {
        min-width: 0;
        padding: 22px 7vw 21px 7vw;
    }
}

/* === MISC/OTHER === */
::-webkit-scrollbar {
    width: 11px;
    background: var(--pastel-blue);
    border-radius: 6px;
}
::-webkit-scrollbar-thumb {
    background: var(--pastel-lemon);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

hr {
    border: 0;
    height: 2px;
    background: var(--pastel-blue);
    margin: 32px 0;
}

/* === UTILITY CLASSES === */
.m-0 { margin: 0 !important; }
.mt-2 { margin-top: 12px !important; }
.mb-2 { margin-bottom: 12px !important; }
.text-center { text-align: center !important; }

/* === ACCESSIBILITY === */
.sr-only {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* === PAGE-SPECIFIC (MINIMAL) === */
.company-details, .visit-details, .contact-info, .contact-details {
    word-break: break-word;
}

/* === BUTTONS (ALL INTERACTIVES) === */
button, .cta-button, .cookie-button, .cookie-settings-button, .mobile-menu-close, .mobile-menu-toggle {
    outline: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.13s, color 0.16s, box-shadow 0.14s;
}

@media (max-width: 540px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.35rem; }
    .footer-brand img,
    header a img {
        height: 32px;
    }
}

/* === END OF STYLES === */
