/* ===================================================
   ========== Shine Maps - Creative Artistic 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1.6;
    font-family: 'Roboto', Arial, sans-serif;
    background: #F9FAFB;
    color: #232C3D;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 0;
}
a {
    color: #19335C;
    text-decoration: none;
    transition: color .2s;
}
a:hover, a:focus {
    color: #FFD700;
}
ol, ul {
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #19335C;
}
h1 { font-size: 2.6rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.1rem; }
p, .subheadline { font-size: 1.15rem; margin-bottom: 16px; }
strong { font-weight: bold; }

/* ARTISTIC BACKGROUND + COLOR ACCENTS--- */
body {
    background-color: #F9FAFB;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: #FFF;
    border-radius: 30px;
    box-shadow: 0 7px 34px 0 rgba(25,51,92,0.09);
    position: relative;
    overflow: visible;
}

/* COLOR PALETTE ----------------------- */
:root {
    --primary: #19335C;
    --secondary: #FFD700;
    --accent: #FFFFFF;
    --violet: #8B5CF6;
    --light-blue: #4ADEDE;
    --soft-pink: #F472B6;
    --bg-gray: #F3F4F6;
    --card-shadow: 0 12px 28px rgba(25,51,92,0.07);
}

/* CONTAINER -------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.content-wrapper {
    margin-bottom: 40px;
    padding: 0;
}

/* HEADER & NAV --------------------------- */
header {
    background: linear-gradient(80deg, #FFD700 0%, #FFF4B7 100%);
    box-shadow: 0 8px 32px rgba(25,51,92,0.04);
    padding-bottom: 6px;
    position: sticky;
    top: 0;
    z-index: 90;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0 10px 0;
}
nav > a img {
    height: 48px;
    border-radius: 16px;
    box-shadow: 0 2px 6px 0 rgba(25,51,92,0.09);
    margin-right: 18px;
}
nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}
nav ul li a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.12rem;
    font-weight: 500;
    color: #19335C;
    padding: 8px 16px;
    border-radius: 14px;
    transition: background .14s, color .14s;
}
nav ul li a:hover,
nav ul li a:focus {
    background: var(--secondary);
    color: #232C3D;
}

.cta-primary {
    background: linear-gradient(87deg, #FFD700 78%, #F472B6 100%);
    color: #19335C;
    font-family: 'Montserrat', Arial, sans-serif;
    border: 0;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.13rem;
    padding: 13px 28px;
    margin-left: 24px;
    box-shadow: 0 6px 28px -8px #FFD70099;
    transition: background .2s, color .2s, box-shadow .25s;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 0.05em;
}
.cta-primary:hover, .cta-primary:focus {
    background: linear-gradient(90deg, #FFD700 60%, #8B5CF6 100%);
    color: #fff;
    box-shadow: 0 14px 34px -12px #FFD700;
}
.cta-secondary {
    background: #19335C;
    color: #FFD700;
    border-radius: 20px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 13px 26px;
    margin-left: 16px;
    transition: background .2s, color .2s;
    border: 2px solid #FFD700;
    display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
    background: #FFD700;
    color: #19335C;
}

/* MOBILE NAVIGATION ---------------------- */
.mobile-menu-toggle {
    display: none;
    font-size: 2rem;
    background: var(--primary);
    color: #FFD700;
    border: none;
    border-radius: 16px;
    padding: 6px 18px;
    margin-left: 20px;
    cursor: pointer;
    transition: background .2s, color .2s;
    z-index: 101;
}
.mobile-menu-toggle:focus {
    outline: 2px solid #FFD700;
}
.mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(25,51,92,0.98);
    transform: translateX(-100%);
    transition: transform .34s cubic-bezier(0.86, 0, 0.07, 1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 32px 18px 0 20px;
}
.mobile-menu.open {
    transform: translateX(0);
    box-shadow: 8px 0 44px rgba(25,51,92,.3);
}
.mobile-menu-close {
    background: transparent;
    color: #FFD700;
    border: none;
    font-size: 2.1rem;
    margin-bottom: 24px;
    align-self: flex-end;
    cursor: pointer;
    transition: color .18s;
}
.mobile-menu-close:focus {
    outline: 1.5px solid #FFD700;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 18px;
    margin-top: 10px;
}
.mobile-nav a {
    color: #FFD700;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.25rem;
    padding: 13px 0 13px 12px;
    border-radius: 8px;
    width: 100%;
    display: block;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background .2s, color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: #fff4b7;
    color: #19335C;
}

@media (max-width: 1080px) {
    .container { max-width: 1000px; }
}
@media (max-width: 980px) {
    .container { max-width: 820px; }
    nav ul { gap: 14px; }
    .cta-primary { padding: 11px 16px; font-size: 1.04rem; }
}
@media (max-width: 900px) {
    nav ul { display: none; }
    .mobile-menu-toggle { display: inline-block; }
    .cta-primary { margin-left: 4px; }
}
@media (min-width: 901px) {
    .mobile-menu { display: none!important; }
    .mobile-menu-toggle { display: none!important; }
}

/* SECTIONS & FLEX SPACING  ------------- */
.section { /* already from reset */ }
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    position: relative;
    background: #FFF;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: box-shadow .18s, transform .14s;
    padding: 28px 20px;
}
.card:hover, .card:focus-within {
    box-shadow: 0 10px 30px 0 rgba(245, 114, 182, .16), var(--card-shadow);
    transform: translateY(-4px) scale(1.025);
}
.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: #F3F4F6;
    border-radius: 18px;
    margin-bottom: 20px;
    box-shadow: 0 4px 19px 0 rgba(70,55,159,0.08);
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background: #F9FAFB;
    border-radius: 13px;
    padding: 18px 16px 14px 12px;
    box-shadow: 0 2px 13px 0 rgba(139,92,246,0.07);
    margin-bottom: 18px;
}
.feature-item strong, .feature-item span {
    color: #8B5CF6;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
}
.rating-summary {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.14rem;
    color: #fff;
    background: #FFD700;
    border-radius: 13px;
    padding: 13px 24px;
    margin-bottom: 19px;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 2px 8px 0 rgba(245, 114, 182, 0.11);
}

.cta-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 13px;
    color: #4ADEDE;
}

/* ARTISTIC FANCY DECOR ----------- */
.section:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 20px;
    right: 16px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #FFD700CC 70%, transparent 100%);
    border-radius: 50%;
    opacity: .38;
}
.section:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    left: 16px;
    bottom: 8px;
    width: 76px;
    height: 28px;
    background: linear-gradient(87deg, #F472B6 32%,transparent 100%);
    border-radius: 25px;
    opacity: .17;
}

.section > .container, .container > .content-wrapper {
    position: relative;
    z-index: 2;
}

/* TESTIMONIALS: Contrast & Card ------ */
.testimonial-card {
    background: #FFFFFF;
    color: #19335C;
    border: 2.5px dashed #FFD700;
    font-style: italic;
    font-size: 1.07rem;
    box-shadow: 0 6px 22px rgba(25,51,92,0.07), 0 1.5px 9px #FFD70021;
    position: relative;
    min-width: 180px;
}
.testimonial-card strong {
    font-style: normal;
    color: #8B5CF6;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.03rem;
}

/* BUTTONS ----------------------- */
button, .cta-primary, .cta-secondary {
    cursor: pointer;
    transition: background .18s, color .18s, box-shadow .17s;
}
/* Generic :focus */
*:focus {
    outline: 2px solid #8B5CF6;
    outline-offset: 2px;
}

/* CARDS -------------------------- */
.card {
    background: #FFF;
    border-radius: 18px;
    box-shadow: var(--card-shadow);
}
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* FOOTER ------------------------- */
footer {
    background: #19335C;
    color: #FFF;
    margin-top: 16px;
    padding: 38px 0 32px 0;
    box-shadow: 0 -2px 38px #19335C11;
}
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 1.07rem;
    margin-bottom: 17px;
    justify-content: center;
    color: #FFD700;
}
.footer-menu a {
    color: #FFD700;
    font-weight: 600;
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0 3px;
    transition: color .15s;
}
.footer-menu a:hover { color: #F472B6; }
.footer-contact {
    font-size: 1.07rem;
    color: #FFD700;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    text-align: center;
}
.footer-contact img { vertical-align: middle; margin-right: 4px; height: 19px; }
.footer-contact a { color: #FFF; font-weight: 600; }
.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 7px;
}
.footer-social a {
    background: #FFD700;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 1.5px 7px #FFD70044;
    display: inline-flex;
    align-items: center;
    transition: background .15s;
}
.footer-social a:hover {
    background: #F472B6;
}
.footer-social img { height: 23px; width: 23px; }

/* SPECIAL PAGES CLASSES -------------- */
.thank-you-message {
    background: #F9FAFB;
    border-left: 6px solid #FFD700;
    padding: 16px 24px;
    border-radius: 10px;
    margin-bottom: 18px;
}
.next-steps-info ul {
    padding-left: 28px;
    list-style: disc;
}
.next-steps-info li {
    margin-bottom: 12px;
    font-size: 1.02rem;
}

/* COOKIE CONSENT BANNER ------------- */
.cookie-banner {
    position: fixed;
    left: 0; bottom: 0; width: 100vw;
    background: #232C3D;
    color: #FFF;
    box-shadow: 0 -6px 26px 0 #19335C44;
    font-family: 'Montserrat', Arial, sans-serif;
    padding: 21px 16px 21px 21px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
    z-index: 1100;
    transition: transform .35s;
}
.cookie-banner.hide { transform: translateY(120%); }
.cookie-banner .banner-title { color: #FFD700; font-size: 1.19rem; font-weight: bold; margin-bottom: 7px; }
.cookie-banner p { color: #FFF; font-size: 1.04rem; margin-bottom: 7px; }
.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.cookie-btn, .cookie-btn-settings {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.05rem;
    border-radius: 13px;
    padding: 10px 23px;
    font-weight: 600;
    border: none;
    margin-right: 4px;
    margin-bottom: 4px;
    transition: background .17s, color .17s;
}
.cookie-btn {
    background: #FFD700;
    color: #19335C;
}
.cookie-btn:hover, .cookie-btn:focus {
    background: #F472B6;
    color: #FFF;
}
.cookie-btn.reject {
    background: #F472B6;
    color: #FFF;
    border: 2px solid #FFD700;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
    background: #19335C;
    color: #FFD700;
}
.cookie-btn-settings {
    background: #19335C;
    color: #FFD700;
    border: 2px solid #FFD700;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
    background: #FFD700;
    color: #19335C;
}
/* Cookie modal */
.cookie-modal {
    position: fixed;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%) scale(1);
    background: #FFF;
    color: #19335C;
    border-radius: 17px;
    box-shadow: 0 10px 38px #19335C29;
    padding: 32px 24px 28px 26px;
    min-width: 325px;
    z-index: 1800;
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: cookieModalIn .46s cubic-bezier(0.7,0,0.3,1);
}
@keyframes cookieModalIn {
    0% { opacity: 0; transform: translate(-50%, -46%) scale(.92); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal-close {
    position: absolute;
    top: 13px; right: 16px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: #8B5CF6;
    cursor: pointer;
    z-index: 1810;
}
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 7px;
}
.cookie-category {
    background: #F3F4F6;
    padding: 12px 18px;
    border-radius: 9px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.cookie-category label {
    font-size: 1.06rem;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #232C3D;
}
.cookie-category input[type="checkbox"] {
    accent-color: #FFD700;
    width: 22px; height: 22px;
    margin-left: 11px;
}
.cookie-category input[disabled] {
    filter: grayscale(70%);
    pointer-events: none;
}
.cookie-category .always-on {
    color: #8B5CF6;
    font-weight: 600;
    margin-left: 9px;
    font-size: .99rem;
}

/* ARTICLE & GUIDES ----------------- */
.article-list ul, .tips-categories ul {
    padding-left: 26px;
    list-style-type: disc;
}

/* CONTACT -------------------------- */
.contact-info, .customer-support-info {
    background: #F3F4F6;
    border-radius: 11px;
    padding: 19px 19px 13px 18px;
    margin-bottom: 13px;
}
.contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.contact-info img {
    height: 19px; margin-right: 4px; vertical-align: middle;
}
.office-hours {
    color: #8B5CF6;
    margin-top: 7px;
 }

/* LAYOUT SPACING & RESPONSIVE ------ */
@media (max-width: 768px) {
    .section {
        padding: 28px 6px;
        border-radius: 16px;
        margin-bottom: 34px;
    }
    .container { padding: 0 4px; }
    nav { flex-wrap: wrap; padding: 9px 0 5px 0; }
    nav ul { display: none; }
    .mobile-menu-toggle { display: inline-block; }
    .content-grid,
    .card-container,
    .testimonial-card,
    .text-image-section {
        flex-direction: column;
        gap: 17px;
    }
    .feature-item { flex-direction: column; gap: 10px; padding: 13px 10px 9px 10px; }
    .footer-menu, .footer-contact, .footer-social { flex-direction: column; align-items: center; gap: 10px; }
    .footer-menu { font-size: .97rem; }
    .footer-social a { margin-bottom: 10px; }
    .cookie-banner { font-size: .98rem; padding: 15px 7px 20px 12px; }
    .cookie-modal { min-width: 240px; padding: 19px 6px 14px 9px; }
}
@media (max-width: 520px) {
    h1 { font-size: 1.52rem; }
    h2 { font-size: 1.22rem; }
    .cta-primary, .cta-secondary { font-size: .98rem; padding: 10px 17px; }
    .testimonial-card { font-size: 0.95rem; }
    .feature-item, .card { padding: 9px 6px; }
}
/* MICRO-INTERACTIONS & HOVER EFFECTS ----- */
.card, .testimonial-card, .feature-item, .cookie-btn, .cta-primary, .cta-secondary, .cookie-modal, .cookie-menu-toggle {
    transition: box-shadow .18s, transform .16s, background .14s, color .14s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
    transform: translateY(-4px) scale(1.022);
    box-shadow: 0 10px 30px rgba(245, 114, 182, .09), var(--card-shadow);
}

/* ARTISTIC FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;600;500;400&family=Roboto:wght@400;500&display=swap');

body, .section, .card, .feature-item, .testimonial-card {
    font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6, .cta-text, .footer-menu, .mobile-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
}
h1, .cta-text {
    font-size: 2.2rem;
    background: linear-gradient(95deg, #FFD700, #F472B6 97%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

/* Visually unique underline for H2/H3 for artistic touch */
h2, h3 {
    position: relative;
}
h2:after {
    content: '';
    display: block;
    margin-top: 3px;
    width: 60px;
    height: 6px;
    background: #FFD700;
    border-radius: 6px;
}
h3:after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    width: 14px;
    height: 4px;
    background: #F472B6;
    border-radius: 3px;
}

/* UNIQUE VISUAL ACCENTS ------------ */
.card, .feature-item {
    border-left: 6px solid #FFD700;
    box-shadow: 0 2px 13px #19335C09;
}

/* Spacing between cards/sections */
.card + .card,
.feature-item + .feature-item,
.section + .section {
    margin-top: 26px;
}

/* Spacing -- general rule for all major elements: */
section, .section, .card, .testimonial-card, .feature-item {
    margin-bottom: 20px;
}

/* Hide outline for mouse users but show for keyboard */
:focus:not(:focus-visible) {
  outline: none;
}

/* Accessibility Adjustments */
.testimonial-card,
.card, .feature-item {
    min-width: 0;
    word-break: break-word;
}

/* Utility: visually hide but accessible */
.sr-only:not(:focus):not(:active) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ========== END ARTISTIC CSS ========== */
