/*-------------------------------------------
 RESET & BASE STYLES
-------------------------------------------*/
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;
    box-sizing: border-box;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    min-height: 100vh;
    font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
    color: #16213E;
    background-color: #F7F7F7;
    line-height: 1.6;
    font-size: 16px;
}
img {
    max-width: 100%;
    height: auto;
}
a {
    color: #27AAE1;
    text-decoration: none;
    transition: color .2s;
}
a:hover, a:focus {
    color: #ff3f73;
    outline: none;
}

/*-------------------------------------------
 FONT IMPORTS
-------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700&display=swap');

/*-------------------------------------------
 BRAND VARIABLES
-------------------------------------------*/
:root {
    --primary: #16213E;
    --secondary: #27AAE1;
    --accent: #F7F7F7;
    --vibrant-pink: #ff3f73;
    --vibrant-yellow: #ffe822;
    --vibrant-orange: #ff872d;
    --success-green: #30D158;
    --danger-red: #EA4E3C;
    --gray: #9ca3af;
    --text-dark: #16213E;
    --text-light: #fff;
    --shadow: 0 4px 32px 0 rgba(38, 38, 89, 0.10), 0 1.5px 4px 0 rgba(38, 38, 89, 0.07);
}

/*-------------------------------------------
 COMMON CONTAINER
-------------------------------------------*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/*-------------------------------------------
 TYPOGRAPHY HIERARCHY
-------------------------------------------*/
h1, .h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -.01em;
}
h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 14px;
}
h4, h5, h6 {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}
p, .subtitle, ul, ol {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.7;
}
.subtitle {
    font-size: 1.18rem;
    color: var(--secondary);
    margin-bottom: 22px;
    letter-spacing: .005em;
}
strong, b {
    font-weight: 700;
    color: var(--primary);
}
ul, ol {
    padding-left: 22px;
    margin-bottom: 16px;
}
ul li, ol li {
    margin-bottom: 8px;
    font-size: 1rem;
}

/*-------------------------------------------
 HEADER & NAVIGATION
-------------------------------------------*/
header {
    background: var(--accent);
    box-shadow: var(--shadow);
    z-index: 90;
    position: relative;
}
header .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo-link img { height: 44px; max-width: 180px; }

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
nav a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    transition: color .2s, background .2s, box-shadow .2s;
    padding: 7px 11px;
    border-radius: 6px;
    letter-spacing: .02em;
}
nav a:hover, nav a:focus {
    color: var(--vibrant-pink);
    background:var(--accent);
    box-shadow: 0 2px 14px 0 rgba(39,170,225,0.06);
}
nav .cta {
    margin-left: 18px;
}

/*-------------------------------------------
 CTA BUTTONS
-------------------------------------------*/
.cta {
    display: inline-flex;
    align-items: center;
    background: var(--secondary);
    color: var(--text-light);
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 12px 32px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 4px 18px 0 #27aae125;
    transition: background .2s, box-shadow .2s, transform .2s;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: .03em;
    margin-top: 12px;
}
.cta.primary {
    background: var(--vibrant-pink);
    color: var(--text-light);
    box-shadow: 0 6px 18px 0 #ff3f7335;
}
.cta:hover,
.cta:focus {
    background: var(--vibrant-yellow);
    color: var(--primary);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px 0 #27aae138;
}

/*-------------------------------------------
 MOBILE MENU & NAVIGATION
-------------------------------------------*/
.mobile-menu-toggle {
    background: var(--secondary);
    color: #fff;
    border: none;
    font-size: 2rem;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 18px;
    transition: background .2s, box-shadow .2s, color .2s;
    z-index: 105;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    background: var(--vibrant-pink);
    color: var(--text-light);
}

.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--primary);
    color: #fff;
    z-index: 120;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.77,.2,.05,1.0);
    padding: 0 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: 0 4px 24px rgba(22,33,62,.14);
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    margin: 26px 20px 16px 0;
    background: none;
    border: none;
    color: var(--vibrant-yellow);
    font-size: 2rem;
    align-self: flex-end;
    padding: 0 18px;
    transition: color .2s;
    cursor: pointer;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
    color: var(--vibrant-pink);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    align-items: flex-start;
    padding: 8px 30px;
}
.mobile-nav a {
    color: var(--text-light);
    font-size: 1.2rem;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    padding: 10px 4px;
    border-bottom: 1px solid #27aae13a;
    border-radius: 0;
    width: 100%;
    background: none;
    transition: background .2s, color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--secondary);
    color: var(--primary);
}

/* Hide desktop nav, show burger menu on mobile */
@media (max-width: 1024px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/*-------------------------------------------
 MAIN & SECTIONS
-------------------------------------------*/
main {
   min-height: 400px;
   margin-bottom: 60px;
}
section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: var(--accent);
    border-radius: 18px;
    box-shadow: 0 2px 18px 0 rgba(39,170,225,0.12);
    transition: box-shadow .2s;
}
section:last-child {
    margin-bottom: 0;
}
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--primary);
    max-width: 880px;
    margin: 0 auto;
}

/*-------------------------------------------
 FLEXBOX PATTERNS & LAYOUTS
-------------------------------------------*/
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    position: relative;
    padding: 28px 18px;
    transition: box-shadow .23s, transform .18s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 220px;
    flex: 1 1 230px;
}
.card:hover {
    box-shadow: 0 8px 32px 0 rgba(255,63,115,0.21);
    transform: translateY(-3px) scale(1.03);
}
.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;
    flex-direction: row;
    gap: 20px;
    padding: 20px 30px;
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 30px 0 rgba(22,33,62,0.10);
    border-radius: 20px;
    margin-bottom: 20px;
    transition: box-shadow .2s, background .2s;
    min-width: 220px;
    font-size: 1.08rem;
    position: relative;
}
.testimonial-card p {
    color: #22293e;
    font-size: 1.06rem;
    font-style: italic;
    margin-bottom: 0;
}
.testimonial-card span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-left: 10px;
    white-space: nowrap;
}
.testimonial-card:hover {
    background: var(--vibrant-yellow);
    box-shadow: 0 8px 38px 0 rgba(255,63,115,0.11);
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/*-- Feature Grid / Membership Tiers / Destinations --*/
.feature-grid, .membership-tiers, .team-section {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 24px;
    align-items: stretch;
    justify-content: flex-start;
}
.feature-grid > div, .membership-tiers > div, .team-section > div {
    flex: 1 1 250px;
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px 24px 20px;
    box-shadow: 0 3px 18px 0 rgba(39,170,225,0.09);
    min-width: 200px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: box-shadow .2s, background .2s, border .17s;
    margin-bottom: 20px;
}
.feature-grid > div:hover, .membership-tiers > div:hover, .team-section > div:hover {
    background: var(--vibrant-yellow);
    box-shadow: 0 6px 30px 0 #ff3f7315;
    border: 2.5px solid var(--secondary);
}
.feature-grid img, .team-section img, .membership-tiers img {
    height: 44px;
    margin-bottom: 14px;
}

.destinations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.destinations-list > h3 {
    flex: 1 1 100%;
    font-size: 1.18rem;
    color: var(--vibrant-pink);
    margin-top: 18px;
}
.region-filters {
    margin-bottom: 18px;
    font-size: 1rem;
    color: var(--secondary);
    font-weight: bold;
    display: flex;
    gap: 10px;
    align-items: center;
}
.region-filters span {
    background: var(--vibrant-yellow);
    border-radius: 12px;
    color: var(--primary);
    padding: 2px 12px;
    margin: 0 1px;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
}
.region-filters span:hover {
    background: var(--vibrant-pink);
    color: #fff;
}

div.destination-highlights ul {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding-left: 0;
}
div.destination-highlights ul li {
    background: var(--secondary);
    color: #fff;
    border-radius: 13px;
    font-size: 1rem;
    padding: 5px 14px;
    margin-bottom: 0;
}

/* Contact Sections & Info */
.contact-section, .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.contact-section > div, .contact-info > span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 1rem;
    box-shadow: 0 2px 10px 0 rgba(39,170,225,0.07);
}

/*-------------------------------------------
 SPACING & WHITE SPACE
-------------------------------------------*/
@media (min-width: 1000px) {
    .content-wrapper { gap: 28px; }
    section { padding: 56px 40px; }
}

/*-------------------------------------------
 FOOTER
-------------------------------------------*/
footer {
    background: var(--primary);
    color: var(--accent);
    padding-top: 32px;
    padding-bottom: 16px;
    box-shadow: 0 -2px 16px 0 rgba(22,33,62,0.11);
}
.footer-area {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-area a img {
    height: 40px;
}
.footer-area nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-area nav a {
    color: var(--accent);
    font-size: .95rem;
    font-weight: 600;
    padding: 2px 0;
    border-radius: 3px;
}
.footer-area nav a:hover {
    color: var(--vibrant-yellow);
    background: none;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 0.98rem;
    color: var(--accent);
    margin-bottom: 10px;
}
.footer-contact span {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contact img {
    height: 18px;
    filter: brightness(10);
}
.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 16px;
}
.footer-social a img {
    height: 26px;
    filter: brightness(5) saturate(1.5);
    transition: filter .18s;
}
.footer-social a:hover img {
    filter: brightness(1) sepia(1) hue-rotate(-35deg) saturate(5) opacity(.85);
}
.footer-legal {
    color: var(--gray);
    font-size: .93rem;
    margin-top: 18px;
    width: 100%;
    opacity: .8;
}

/*-------------------------------------------
 COOKIE CONSENT BANNER
-------------------------------------------*/
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 28px 20px 26px 20px;
    background: var(--primary);
    color: var(--accent);
    z-index: 9999;
    box-shadow: 0 -6px 24px 0 rgba(22,33,62,0.15);
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .42s cubic-bezier(.77,.2,.05,1.0), opacity .22s;
    border-radius: 18px 18px 0 0;
}
.cookie-banner.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.cookie-banner-text {
    font-size: 1rem;
    color: var(--accent);
}
.cookie-banner-actions {
    display: flex;
    gap: 18px;
    align-items: center;
}
.cookie-btn {
    background: var(--secondary);
    color: #fff;
    border: none;
    font-weight: 700;
    border-radius: 24px;
    padding: 11px 26px;
    font-size: 1rem;
    margin-right: 0;
    box-shadow: 0 2px 16px 0 #27aae127;
    transition: background .13s, box-shadow .14s, color .13s;
    cursor: pointer;
}
.cookie-btn.accept {
    background: var(--vibrant-pink);
}
.cookie-btn.reject {
    background: var(--gray);
    color: var(--primary);
}
.cookie-btn.settings {
    background: var(--vibrant-yellow);
    color: var(--primary);
}
.cookie-btn:focus, .cookie-btn:hover {
    background: var(--primary);
    color: var(--accent);
}

/* Cookie Preferences Modal */
.cookie-modal {
    position: fixed;
    left: 0; right: 0;
    top: 0; bottom: 0;
    background: rgba(22,33,62,0.79);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .32s;
}
.cookie-modal.open {
    opacity: 1;
    pointer-events: all;
}
.cookie-modal-content {
    background: #fff;
    color: var(--primary);
    border-radius: 18px;
    max-width: 420px;
    width: 96vw;
    padding: 32px 28px 28px 28px;
    box-shadow: 0 8px 44px 0 #16213e33;
    display: flex;
    flex-direction: column;
    gap: 19px;
    animation: cookiepop .46s cubic-bezier(.47,-0.01,.43,1.03);
    position: relative;
}
@keyframes cookiepop {
    0%   { transform: scale(0.9) translateY(60px); opacity:0; }
    100% { transform: scale(1) translateY(0);   opacity:1; }
}
.cookie-modal-content h2 {
    font-size: 1.41rem;
    font-weight: 700;
    color: var(--secondary);
}
.cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 7px 13px;
}
.cookie-toggle {
    width: 46px;
    height: 26px;
    border-radius: 20px;
    background: var(--gray);
    appearance: none;
    cursor: pointer;
    position: relative;
    outline: none;
    transition: background .21s;
}
.cookie-toggle:checked {
    background: var(--secondary);
}
.cookie-toggle:before {
    content: '';
    position: absolute;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    left: 2px; top: 2.5px;
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(27,46,84,0.09);
    transition: transform .22s;
}
.cookie-toggle:checked:before {
    transform: translateX(19px);
}
.cookie-modal-footer {
    display: flex;
    flex-direction: row;
    gap: 18px;
    margin-top: 18px;
    justify-content: flex-end;
}
.cookie-modal-close {
    position: absolute;
    right: 16px;
    top: 14px;
    background: none;
    color: var(--secondary);
    border: none;
    font-size: 1.55rem;
    cursor: pointer;
    padding: 4px 7px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
    color: var(--vibrant-pink);
}

/*-------------------------------------------
 RESPONSIVENESS & MOBILE FIRST
-------------------------------------------*/
@media (max-width: 1000px) {
    .footer-area {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .card-container, .content-grid, .feature-grid, .membership-tiers, .team-section {
      flex-direction: column;
      gap: 24px;
    }
    .footer-area { flex-direction: column; gap: 24px; }
}
@media (max-width: 768px) {
  section { padding: 34px 7px; margin-bottom: 44px; }
  .testimonial-card, .card {
      flex-direction: column;
      padding: 18px 10px;
      gap: 8px;
  }
  .content-grid,.feature-grid,.membership-tiers,.team-section, .card-container {
      flex-direction: column;
      gap: 20px;
  }
  .text-image-section { flex-direction: column; gap: 19px; }
}
@media (max-width: 550px) {
    header .container {
        flex-direction: row;
        gap: 10px;
        height: 62px;
        padding-top: 4px;
        padding-bottom: 4px;
    }
    .logo-link img { height: 32px; }
    h1, .h1 { font-size: 1.67rem; }
    h2 { font-size: 1.21rem; }
    section { padding: 22px 0; }
    .card, .testimonial-card { padding: 12px 8px; }
    .cookie-modal-content {
        padding: 18px 6vw 18px 6vw;
    }
}

/*-------------------------------------------
 SCROLLBARS (optional for vibrancy)
-------------------------------------------*/
::-webkit-scrollbar { width: 8px; background: #f3f5fa; }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 3px; }

/*-------------------------------------------
 MISC: FAQ & LISTS
-------------------------------------------*/
.faq-list li {
    background: #fff;
    margin-bottom: 16px;
    border-radius: 10px;
    box-shadow: 0 2px 12px 0 #27aae115;
    padding: 14px 18px;
    transition: box-shadow .17s;
    font-size: 1rem;
}
.faq-list li strong {
    color: var(--secondary);
    font-size: 1.06rem;
}

.text-section {
    background: #fff;
    padding: 18px 18px 11px 16px;
    border-radius: 15px;
    box-shadow: 0 2px 12px 0 #27aae118;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--primary);
}

/*-------------------------------------------
 ANIMATIONS & MICRO-INTERACTIONS
-------------------------------------------*/
.cta, .card, .testimonial-card,
.feature-grid>div, .membership-tiers>div, .team-section>div {
    will-change: transform, box-shadow;
}
.cta { transition: all .19s cubic-bezier(.43,-0.01,.43,1.20); }
.card, .testimonial-card { transition: box-shadow .15s, transform .12s; }
.testimonial-card:hover { box-shadow: 0 12px 44px 0 #27aae140; }
.card:hover { transform: translateY(-3px) scale(1.03); }

/*-------------------------------------------
 HIGH CONTRAST/ACCESSIBILITY
-------------------------------------------*/
.testimonial-card {
    background: #fff;
    color: #111A2B;
}

/*-------------------------------------------
 Z-INDEX PRIORITIES
-------------------------------------------*/
header { z-index: 90; }
.mobile-menu { z-index: 120; }
.cookie-banner { z-index: 9999; }
.cookie-modal { z-index: 10000; }

/*-------------------------------------------
 VIBRANT ENERGETIC EXTRAS
-------------------------------------------*/
section {
    border-left: 8px solid var(--vibrant-pink);
    border-right: 8px solid var(--secondary);
    box-shadow: 0 2px 18px 0 #27aae123, 0 9px 23px 0 #ff3f730a;
    position: relative;
}
section:before {
    content: '';
    position: absolute;
    left: -5px; top: 22px;
    width: 18px; height: 18px;
    background: var(--vibrant-yellow);
    border-radius: 50%;
    z-index: 0;
    opacity: .8;
    filter: blur(1.1px);
    pointer-events: none;
}
@media (max-width:700px) {
    section { border-left: 4px solid var(--vibrant-pink); border-right: 4px solid var(--secondary); }
    section:before { width: 10px; height: 10px; left: -3px; }
}

/**** END OF CSS ****/
