/* ---------------------------------------------------------
   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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  background: #fff;
  color: #18191A;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border-radius: 0;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* ----------------------------
   COLOR PALETTE
----------------------------- */
:root {
  --mono-black: #18191A;
  --mono-dark: #232526;
  --mono-gray: #47484b;
  --mono-silver: #EAECEE;
  --mono-white: #fff;
  --brand-primary: #136484;
  --brand-accent: #18A4B2;
  /* Accent for monochrome mode: #47484b for subtle tints */
}

/* ---------------------------------------------------------
   TYPOGRAPHY
--------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--mono-black);
}
h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--mono-black);
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--mono-black);
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--mono-dark);
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol, li, a, strong, small {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--mono-gray);
  line-height: 1.7;
}
strong {
  color: var(--mono-black);
  font-weight: 600;
}
a {
  color: var(--mono-black);
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: var(--brand-primary);
  text-decoration: underline;
}
small {
  font-size: 0.93rem;
  color: var(--mono-gray);
}

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

main {
  padding-bottom: 70px; /* for cookie banner space */
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 840px;
}

/* ---------------------------------------------------------
   HEADER & NAVIGATION
--------------------------------------------------------- */
header {
  background: var(--mono-white);
  border-bottom: 1px solid #e6e6e7;
  width: 100%;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 80px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  color: var(--mono-black);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 0;
  font-weight: 500;
  position: relative;
  transition: color 0.22s;
}
header nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: var(--mono-black);
  transition: width 0.2s;
  position: absolute;
  left: 0; bottom: 0;
}
header nav a:hover:after, header nav a:focus:after {
  width: 80%;
}
header nav a:hover, header nav a:focus {
  color: var(--brand-primary);
}
header .cta-btn {
  margin-left: 10px;
}

/* ---------------------------------------------------------
   CTA BUTTONS & BUTTON GROUPS
--------------------------------------------------------- */
.cta-btn, .btn, button, .category-tag {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 28px;
  box-shadow: 0 1.5px 10px rgba(24,25,26,0.02);
  padding: 12px 32px;
  font-size: 1.05rem;
  background: var(--mono-black);
  color: var(--mono-white);
  transition: background .18s, color .18s, box-shadow .2s, transform .2s;
  display: inline-block;
}
.cta-btn:hover, .btn:hover, .cta-btn:focus, .btn:focus {
  background: var(--brand-primary);
  color: var(--mono-white);
  box-shadow: 0 3px 16px rgba(19,100,132,0.13);
  transform: translateY(-2px) scale(1.017);
}
.cta-btn:active, .btn:active {
  background: var(--brand-accent);
  color: var(--mono-white);
}
.cta-btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Accent tag for categories */
.category-tag {
  background: var(--mono-silver);
  color: var(--mono-black);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 5px 16px;
  border-radius: 16px;
  margin: 2px 6px 2px 0;
  transition: background 0.2s, color 0.2s;
  border: 1px solid var(--mono-dark);
}
.category-tag:hover {
  background: var(--mono-black);
  color: var(--mono-white);
  border-color: var(--brand-primary);
}

/* ---------------------------------------------------------
   BURGER MENU (Mobile Navigation)
--------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 18px;
  background: var(--mono-black);
  color: var(--mono-white);
  border: none;
  border-radius: 100px;
  z-index: 1002;
  padding: 10px 16px;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(24,25,26,0.06);
  transition: background .15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--brand-primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,35,36,0.95);
  z-index: 1001;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.68,-0.55,0.27,1.55);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--mono-white);
  border: none;
  font-size: 2.2rem;
  margin: 18px 24px 0 0;
  padding: 8px 8px;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--brand-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 54px 0 0 38px;
}
.mobile-nav a {
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: -.01em;
  color: var(--mono-white);
  font-weight: 600;
  transition: color 0.14s;
  padding: 4px 0;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--brand-accent);
}

/* Hide main navigation at mobile */
@media (max-width: 980px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .cta-btn {
    display: none;
  }
}
@media (max-width: 600px) {
  .mobile-nav {
    margin: 46px 0 0 18px;
  }
}

/* ---------------------------------------------------------
   FLEXBOX UTILITIES FOR LAYOUT
--------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--mono-white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(24,25,26,0.06);
  padding: 24px;
  flex: 1 1 320px;
  transition: box-shadow 0.16s, transform 0.14s;
  display: flex;
  flex-direction: column;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(24,25,26,0.10);
  transform: translateY(-4px) scale(1.012);
}
.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 32px;
  background: var(--mono-white);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(24,25,26,0.07);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 400px;
  flex: 1 1 300px;
  transition: box-shadow .18s, transform .16s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px rgba(19,100,132,0.08);
  transform: translateY(-3px) scale(1.012);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid, .team-grid, .destination-cards, .deal-listings, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div, 
.team-grid > div, 
.destination-cards > div, 
.deal-listings > div, 
.testimonial-grid > div {
  background: var(--mono-white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(24,25,26,0.07);
  padding: 22px 24px;
  flex: 1 1 270px;
  min-width: 230px;
  max-width: 368px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.15s;
  display: flex;
  flex-direction: column;
}
.feature-grid > div:hover, 
.team-grid > div:hover, 
.destination-cards > div:hover, 
.deal-listings > div:hover {
  box-shadow: 0 6px 32px rgba(19,100,132,0.09);
  transform: translateY(-3px) scale(1.013);
}

.quick-guides, .faqs, .next-steps {
  margin-top: 32px;
}

/* Contact details */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}
.contact-details ul {
  flex: 1 1 340px;
}

/* ---------------------------------------------------------
   TESTIMONIALS & SPECIAL CARDS
   (Maintain High Contrast)
--------------------------------------------------------- */
.testimonial-card {
  background: var(--mono-white);
  color: var(--mono-black);
  border: 1.5px solid #e3e5e8;
}
.testimonial-card span {
  color: #e0b800;
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
  letter-spacing: 2px;
}
.testimonial-card strong {
  color: var(--mono-black);
  font-weight: 700;
}
.confirmation-message {
  margin-bottom: 18px;
  background: #f7f8fa;
  border-left: 4px solid var(--brand-primary);
  padding: 18px 30px;
  border-radius: 6px;
  color: var(--mono-black);
}

/* ---------------------------------------------------------
   SECTION, SPACING, HIERARCHY
--------------------------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}
.content-wrapper > h1,
.content-wrapper > h2,
.content-wrapper > h3 {
  margin-bottom: 24px;
}
.text-section {
  margin-bottom: 20px;
}
.text-section ul {
  margin-left: 18px;
  margin-bottom: 10px;
  list-style: disc;
}
.text-section ul li {
  margin-bottom: 8px;
}
ol {
  margin-left: 18px;
  margin-bottom: 15px;
  list-style-type: decimal;
}
ol li {
  margin-bottom: 7px;
}
.terms-brief, .user-rights-summary, .user-obligations-summary, .opt-out-details, .request-data-access {
  background: #f8f9fb;
  border-left: 3.5px solid var(--brand-primary);
  padding: 14px 20px;
  border-radius: 6px;
  margin: 20px 0 0 0;
  color: var(--mono-black);
}

/* ---------------------------------------------------------
   MISC ELEMENTS & CARDS
--------------------------------------------------------- */
.search-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 26px 0 16px;
}
.search-preview span {
  background: var(--mono-silver);
  color: var(--mono-black);
  font-size: 1rem;
  border-radius: 24px;
  padding: 7px 16px 7px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.deal-listings {
  margin-top: 18px;
}
.deal-card img {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
}
.deal-card h3 {
  font-size: 1.1rem;
}

/***************************************
  FOOTER
 ***************************************/
footer {
  background: var(--mono-black);
  color: var(--mono-white);
  width: 100%;
  padding-top: 36px;
  padding-bottom: 30px;
  margin-top: 50px;
}
footer .container {
  width: 100%;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  border-bottom: 1.5px solid #333;
  padding-bottom: 30px;
}
.footer-main > div {
  flex: 1 1 220px;
  min-width: 190px;
}
.footer-main img {
  width: 42px;
  height: 42px;
  margin-bottom: 9px;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-main nav a {
  color: var(--mono-white);
  font-size: 1rem;
  opacity: 0.95;
  font-weight: 600;
  margin: 0 0 3px 0;
  transition: color .17s;
}
.footer-main nav a:hover,
.footer-main nav a:focus {
  color: var(--brand-accent);
}
.footer-main h3 {
  font-size: 1.17rem;
  color: var(--brand-accent);
  margin-bottom: 7px;
  margin-top: 10px;
}
.footer-main ul li {
  display: flex;
  align-items: center;
  color: var(--mono-silver);
  font-size: 0.96rem;
  margin-bottom: 8px;
  gap: 8px;
}
.footer-main ul li img {
  width: 15px;
  height: 15px;
  margin-bottom: 0;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  gap: 12px;
}
.footer-bottom .social {
  display: flex;
  gap: 17px;
}
.footer-bottom .social a img {
  width: 24px;
  height: 24px;
  opacity: 0.93;
  transition: opacity 0.17s;
}
.footer-bottom .social a:hover img {
  opacity: 1;
  filter: brightness(1.7);
}
.footer-bottom .legal {
  color: #cfd2d4;
  font-size: 0.98rem;
}

/* ---------------------------------------------------------
   COOKIE CONSENT BANNER
--------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1999;
  background: #232526;
  color: var(--mono-white);
  width: 100vw;
  box-shadow: 0 -1px 10px rgba(24,25,26,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 16px 18px 16px;
  gap: 20px;
  animation: slideInCookie 0.7s cubic-bezier(0.82,-0.02,0.26,0.97);
}
@keyframes slideInCookie {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  text-align: center;
  color: var(--mono-white);
  font-size: 1.04rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-banner-actions {
  display: flex;
  gap: 13px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.cookie-banner-actions .btn,
.cookie-banner-actions .cta-btn,
.cookie-banner-actions button {
  padding: 9px 24px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.14s;
}
.cookie-accept {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-accept:hover { background: var(--brand-accent); }
.cookie-reject {
  background: var(--mono-white);
  color: var(--mono-black);
}
.cookie-reject:hover { background: #ececec; color: var(--brand-primary); }
.cookie-settings {
  background: transparent;
  color: var(--brand-accent);
  border: 1.5px solid var(--brand-accent);
}
.cookie-settings:hover { background: var(--brand-accent); color: #fff; }

/* ----- Cookie Modal Popup ----- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  z-index: 2001;
  background: rgba(34,35,36,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  animation: fadeInModal .35s cubic-bezier(0.45,0,.39,1.02);
}
@keyframes fadeInModal {
  from { opacity:0; }
  to   { opacity:1; }
}
.cookie-modal-inner {
  background: var(--mono-white);
  color: var(--mono-black);
  border-radius: 13px;
  box-shadow: 0 12px 32px rgba(20,20,22,0.13);
  padding: 38px 36px 32px 36px;
  width: 94vw;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--mono-black);
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal-close:hover {
  color: var(--brand-primary);
}
.cookie-modal-inner h2 {
  margin-bottom: 11px;
  font-size: 1.21rem;
}
.cookie-category-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 19px;
}
.cookie-category-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f2f2f4;
  border-radius: 8px;
  padding: 11px 18px;
  font-size: 1rem;
  font-weight: 600;
}
.cookie-category-toggle input[type="checkbox"]:not(:disabled) {
  accent-color: var(--brand-accent);
}
.cookie-category-toggle input[disabled] {
  accent-color: #bdbdbd;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 8px;
}

/* ---------------------------------------------------------
   RESPONSIVE DESIGN (Mobile-first)
--------------------------------------------------------- */
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .footer-main {
    flex-wrap: wrap;
  }
  .footer-main > div {
    flex-basis: 45%;
    min-width: 180px;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  header .container {
    height: 64px;
    gap: 12px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.28rem; }
  .content-wrapper { max-width: 100%; }
  .section { padding: 30px 8px; }
  .feature-grid,
  .team-grid,
  .destination-cards, 
  .deal-listings,
  .testimonial-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .team-grid > div, .destination-cards > div,
  .deal-listings > div, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .footer-main {
    flex-direction: column;
    gap: 25px;
  }
  .footer-main > div {
    min-width: 0;
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
  .search-preview { flex-direction: column; gap: 8px; }
  .contact-details {
    flex-direction: column;
    gap: 10px;
  }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 17px; }
}
@media (max-width: 450px) {
  .container { padding-left: 8px; padding-right: 8px; }
  .cookie-modal-inner { padding: 19px 7px 16px 7px; }
  header .container { gap: 6px; }
}

/* ---------------------------------------------------------
   SCROLLBAR (Monochrome style)
--------------------------------------------------------- */
::-webkit-scrollbar { width: 8px; background: #e2e2e2; }
::-webkit-scrollbar-thumb { background: #bdbdbd; border-radius: 6px; }
body {
  scrollbar-color: #bdbdbd #e2e2e2;
  scrollbar-width: thin;
}

/* ---------------------------------------------------------
   ANIMATIONS & MICRO-INTERACTIONS
--------------------------------------------------------- */
.cta-btn,
.btn,
.category-tag,
.card,
.feature-grid > div, .team-grid > div,
.destination-cards > div, .deal-listings > div,
.testimonial-card {
  transition: box-shadow .18s, background .19s, color .14s, transform .16s;
}
.cta-btn:active, .btn:active {
  transform: scale(0.98);
}
.card:active {
  transform: scale(0.985);
}
.feature-grid > div:active, .team-grid > div:active,
.destination-cards > div:active, .deal-listings > div:active,
.testimonial-card:active {
  transform: scale(0.99);
}

/* ---------------------------------------------------------
   SELECTION COLOR (Monochrome emphasis)
--------------------------------------------------------- */
::selection {
  background: var(--brand-primary);
  color: #fff;
}

/* ---------------------------------------------------------
   FORMS (Text Inputs, where present)
--------------------------------------------------------- */
input, textarea, select {
  background: #F6F7FA;
  border: 1.2px solid #ccd1d5;
  color: var(--mono-black);
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color .16s, background .17s;
  font-family: 'Open Sans', Arial, sans-serif;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand-primary);
  background: #fff;
}

/* ---------------------------------------------------------
   ACCESSIBILITY / VISIBILITY HELPERS
--------------------------------------------------------- */
[tabindex]:focus, a:focus, button:focus {
  outline: 2px dashed var(--brand-primary) !important;
  outline-offset: 1px;
}

/* Utility Classes */
.hide { display: none !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }

/* ---------------------------------------------------------
   Z-INDEX LAYER MANAGEMENT
--------------------------------------------------------- */
header { z-index: 994; position: relative; }
.mobile-menu { z-index: 1001; }
.mobile-menu-toggle { z-index: 1002; }
.cookie-banner, .cookie-modal { z-index: 1999; }

/* END OF CSS */
