/* =====================================
   Luxury Premium Brand CSS for Brisk Expeditions
   Mobile-First, Flexbox-Only, No Grid/Columns
   ============================================= */

/* 0. 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: #F9F7F4;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1B1B1B;
  background-color: #F9F7F4;
  min-height: 100vh;
}
a {
  color: #185B8C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5A623;
  outline: none;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #185B8C;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.175rem;
  margin-bottom: 10px;
}
p, li, th, td {
  font-size: 1rem;
}
strong {
  font-weight: 700;
  color: #1B1B1B;
}

/* Luxury Premium Style - Minor Gold Line for h2 */
h2 {
  position: relative;
  padding-left: 18px;
}
h2:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 32px;
  border-radius: 2px;
  background: #F5A623;
  position: absolute;
  left: 0;
  top: 5px;
}

/* 1. Container & Section Layouts */
.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Section Spacing - mandatory pattern */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 30px 0 rgba(24, 91, 140, 0.08);
}
main>
section:not(:last-child) {
  margin-bottom: 60px;
}

/* Flexbox Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(30, 27, 27, 0.04);
  padding: 32px 28px;
  border: 1px solid #F0ECE7;
  min-width: 250px;
  transition: box-shadow 0.25s, border-color 0.2s;
}
.card:hover {
  border-color: #F5A623;
  box-shadow: 0 8px 32px 0 rgba(245, 166, 35, 0.09);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 28px 20px 20px;
  border-left: 5px solid #F5A623;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(24,91,140,0.06);
  border-radius: 10px;
  margin-bottom: 20px;
  max-width: 540px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Visual Hierarchy and Details */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(90deg, #185B8C 80%, #F5A623 200%);
  border-radius: 42px;
  padding: 14px 34px;
  outline: none;
  border: none;
  box-shadow: 0 2px 20px 0 rgba(24, 91, 140, 0.07);
  letter-spacing: 0.08em;
  transition: background 0.25s, box-shadow 0.25s, color 0.2s;
  cursor: pointer;
  margin: 8px 0;
  text-shadow: 0 2px 9px rgba(245,166,35,0.14);
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #F5A623 90%, #185B8C 200%);
  color: #185B8C;
  box-shadow: 0 8px 40px 0 rgba(245,166,35,0.13);
}

/* Luxurious List Styles */
ul li, ol li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
ul li img {
  min-width: 26px;
  min-height: 26px;
  margin-right: 10px;
  border-radius: 50%;
  background: #F9F7F4;
  box-shadow: 0 2px 8px 0 rgba(24, 91, 140, 0.06);
}
ul li a {
  font-weight: 700;
  color: #185B8C;
  text-decoration: underline;
}
ul li a:hover {
  color: #F5A623;
}

/* Table Styles for pricing */
table {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 18px 0 rgba(24,91,140,0.07);
  overflow: hidden;
  margin-bottom: 32px;
}
thead th {
  background: #185B8C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 16px 8px;
  font-weight: 700;
  border-bottom: 3px solid #F5A623;
}
tbody td {
  padding: 14px 10px;
  border-bottom: 1px solid #F0ECE7;
  color: #1B1B1B;
  background: #fff;
}
tr:last-child td {
  border-bottom: none;
}

/* Blog Styles  */
.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
}
.blog-toolbar input[type="text"] {
  border: 1px solid #D2D2D2;
  border-radius: 28px;
  padding: 10px 20px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  outline: none;
  background: #faf9f7;
  min-width: 210px;
  transition: border-color 0.22s;
}
.blog-toolbar input[type="text"]:focus {
  border-color: #F5A623;
}
.blog-toolbar select {
  border: 1px solid #D2D2D2;
  border-radius: 28px;
  padding: 10px 20px;
  font-size: 1rem;
  background: #faf9f7;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border-color 0.22s;
}
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.blog-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(24,91,140,0.06);
  padding: 26px 24px 20px 20px;
}
.blog-list h2 {
  font-size: 1.25rem;
  color: #185B8C;
  margin-bottom: 8px;
}
.blog-list a {
  color: #F5A623;
  text-decoration: underline;
  font-weight: 700;
}
.blog-list a:hover {
  color: #185B8C;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(24,91,140,0.03);
  border-left: 3px solid #F5A623;
  padding: 18px 21px 13px 16px;
  transition: box-shadow 0.2s;
}
.faq-item h3 {
  cursor: pointer;
  font-size: 1.08rem;
  margin-bottom: 4px;
  color: #185B8C;
}
.faq-item div {
  font-size: 1rem;
  color: #1B1B1B;
}

/* Pricing Cards + Chart */
.comparison-chart {
  background: #F9F7F4;
  border-left: 4px solid #F5A623;
  border-radius: 12px;
  padding: 20px 26px;
  margin-bottom: 24px;
}
.pricing-notes {
  color: #8C7F67;
  background: #fdf9f2;
  border-left: 3px solid #F5A623;
  border-radius: 8px;
  padding: 18px 18px;
  margin-bottom: 10px;
}

/* Contact Page Styles */
.contact-box {
  background: #fff;
  border-radius: 12px;
  padding: 22px 27px;
  box-shadow: 0 2px 12px 0 rgba(24,91,140,0.09);
  margin-bottom: 20px;
}
.address-map {
  background: #F9F7F4;
  border-radius: 8px;
  padding: 18px 16px;
  margin-bottom: 20px;
}
.text-section {
  margin-bottom: 20px;
}

/* Footer & Contact info */
footer {
  background: #185B8C;
  color: #fff;
  padding: 40px 0 0 0;
}
footer .container {
  padding-bottom: 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1em;
  transition: color 0.19s;
}
footer nav a:hover {
  color: #F5A623;
  text-decoration: underline;
}
footer .contact-info {
  font-size: 0.97rem;
  color: #e6ded4;
  margin-bottom: 10px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
footer .contact-info img {
  margin-right: 8px;
  vertical-align: text-bottom;
}

/* Header, Nav, Logo */
header {
  background: #fff;
  border-bottom: 1.5px solid #eee5d7;
  height: 80px;
  z-index: 100;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 36px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
header nav a {
  display: inline-flex;
  align-items: center;
  color: #185B8C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.18s, color 0.19s;
}
header nav a:last-child {
  margin-right: 0;
}
header nav a:hover {
  color: #F5A623;
  background: #F9F7F4;
}

/* Responsive logo */
header img, footer img {
  height: 38px;
  width: auto;
}

/* 2. Mobile Menu Styles */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  background: #fff;
  color: #185B8C;
  font-size: 2rem;
  border: 2px solid #F5A623;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(245,166,35,0.09);
  padding: 6px 13px 6px 13px;
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.16s, color 0.18s;
  z-index: 350;
}
.mobile-menu-toggle:hover {
  background: #F9F7F4;
  color: #F5A623;
  border-color: #185B8C;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 91, 140, 0.99);
  z-index: 9999;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.44s cubic-bezier(0.43,0.23,0.39,0.88), opacity 0.24s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #F5A623;
  font-size: 2.3rem;
  padding: 21px 28px 18px 0;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.19s;
  z-index: 10001;
}
.mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: flex-start;
  padding: 32px 38px 10px 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 12px 0 8px 0;
  margin-left: 3px;
  border-bottom: 2px solid transparent;
  transition: color .19s, border-bottom-color .19s, background .14s;
}
.mobile-nav a:hover {
  color: #F5A623;
  border-bottom: 2px solid #F5A623;
  background: rgba(255,255,255,0.03);
}

/* Hide navigation for mobile - show hamburger */
@media (max-width: 980px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
@media (min-width: 981px) {
  .mobile-menu-toggle, .mobile-menu{
    display: none !important;
  }
  header nav {
    display: flex !important;
  }
}

/* 3. Cookie Consent Banner & Modal */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #fff;
  color: #1B1B1B;
  box-shadow: 0 -2px 22px 0 rgba(24,91,140,0.16);
  border-top: 4px solid #F5A623;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 22px 12px 22px 12px;
  z-index: 14500;
  min-height: 92px;
  transition: transform 0.3s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  padding: 9px 22px;
  border: none;
  border-radius: 30px;
  background: #185B8C;
  color: #fff;
  margin-right: 4px;
  box-shadow: 0 2px 9px 0 rgba(24,91,140,0.09);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.cookie-consent-banner button:last-child { margin-right: 0; }
.cookie-consent-banner .accept {
  background: #F5A623;
  color: #1B1B1B;
}
.cookie-consent-banner .reject {
  background: #185B8C;
  color: #fff;
}
.cookie-consent-banner .settings {
  background: #fff;
  color: #185B8C;
  border: 2px solid #185B8C;
}
.cookie-consent-banner button:hover,
.cookie-consent-banner button:focus {
  background: #F5A623;
  color: #185B8C;
  box-shadow: 0 4px 13px 0 rgba(245,166,35,0.13);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 16000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,91,140,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.29s, visibility 0.2s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.cookie-modal {
  background: #fff;
  color: #1B1B1B;
  border-radius: 22px;
  max-width: 410px;
  width: 94vw;
  padding: 38px 32px 30px 32px;
  box-shadow: 0 4px 48px 0 rgba(24,91,140,0.11);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #185B8C;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-modal .toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #D2D2D2;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  outline: none;
  transition: background 0.21s;
}
.cookie-modal .toggle:checked {
  background: #F5A623;
}
.cookie-modal .toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.21s;
}
.cookie-modal .toggle:checked:before {
  transform: translateX(18px);
}
.cookie-modal .cookie-modal-close {
  background: none;
  border: none;
  color: #F5A623;
  font-size: 2.2rem;
  position: absolute;
  top: 17px;
  right: 21px;
  cursor: pointer;
  transition: color .19s;
  z-index: 16001;
}
.cookie-modal .cookie-modal-close:hover {
  color: #185B8C;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 8px;
}
.cookie-modal .cookie-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  border-radius: 30px;
  padding: 9px 18px;
  border: none;
  background: #185B8C;
  color: #fff;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal .cookie-actions button.accept {
  background: #F5A623;
  color: #185B8C;
}
.cookie-modal .cookie-actions button.reject {
  background: #185B8C;
  color: #fff;
}
.cookie-modal .cookie-actions button.settings {
  background: #fff;
  color: #185B8C;
  border: 2px solid #185B8C;
}
.cookie-modal .cookie-actions button:hover {
  background: #F5A623;
  color: #185B8C;
}

/* 4. Responsive Design - Mobile First */
@media (max-width: 1060px) {
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 840px) {
  .section {
    padding: 25px 8px;
  }
  .card {
    padding: 20px 16px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 2px;
  }
  header .container, footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    height: auto;
  }
  .content-grid,
  .text-image-section,
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    padding: 16px 12px 16px 11px;
    max-width: 100%;
  }
  .feature-item, .section, .card, .blog-list li, .faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
  }
  .card {
    min-width: 0;
  }
  main section {
    margin-bottom: 32px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.36rem;
  }
  h2 {
    font-size: 1.02rem;
    padding-left: 14px;
  }
  .cta-btn {
    padding: 12px 17px;
    font-size: 0.97rem;
  }
}

/* 5. Transitions, Animations */
.cta-btn, button, .card, .testimonial-card, .faq-item, .blog-list li {
  transition: box-shadow 0.22s, background 0.22s, color 0.16s, border-color 0.15s;
}
.card:active, .testimonial-card:active {
  box-shadow: 0 0.5px 4px 0 rgba(245,166,35,0.06);
}

/* 6. Accessibility & Contrast for Testimonials */
.testimonial-card p {
  color: #185B8C;
  font-size: 1.07rem;
  margin-bottom: 7px;
}
.testimonial-card span {
  color: #1B1B1B;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 0.99rem;
}

/* 7. Misc. fixes and helpers */
::-webkit-input-placeholder { color: #8C7F67; }
::-moz-placeholder { color: #8C7F67; }
:-ms-input-placeholder { color: #8C7F67; }
::placeholder { color: #8C7F67; }

.content-wrapper>ul, .content-wrapper>ol, .text-section ul, .text-section ol {
  margin-left: 10px;
  margin-bottom: 20px;
}
h2:before { top: 4px !important; }

/* Hide native scrollbars (luxury subtle style) */
body, .container, .mobile-menu, .mobile-nav {
  scrollbar-width: thin;
  scrollbar-color: #F5A623 #fff;
}
::-webkit-scrollbar {
  width: 6px;
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #F5A623;
  border-radius: 13px;
}

/* END OF STYLES */