/* --- CSS RESET & BASE --- */
html,
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  box-sizing: border-box;
  font-family: 'Roboto', Arial, sans-serif;
  color: #25344E;
  background: #f8fafc;
}
*, *::before, *::after {
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
a {
  color: #F5A623;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #25344E;
  text-decoration: underline;
}
ul,
ol {
  margin: 0 0 1.5em 1.25em;
  padding: 0;
}
li {
  margin-bottom: 0.7em;
  line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #25344E;
  margin-bottom: 16px;
  font-weight: 800;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-top: 0;
}
h2 {
  font-size: 2rem;
  margin-top: 0;
}
h3 {
  font-size: 1.25rem;
  margin-top: 0;
}
p {
  margin-bottom: 1.25em;
  line-height: 1.7;
}
strong {
  font-weight: bold;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(37,52,78,0.08);
  position: relative;
}

/* --- HEADER --- */
header {
  background: #fff;
  box-shadow: 0 2px 18px rgba(37,52,78,0.09);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 32px;
  height: 50px;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-right: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #25344E;
  padding: 7px 12px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #25344E;
  color: #fff;
}

.btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 32px;
  font-size: 1.08rem;
  font-weight: 800;
  border: none;
  border-radius: 14px;
  transition: background 0.2s, color 0.2s, box-shadow 0.22s;
  cursor: pointer;
  margin-left: 20px;
  box-shadow: 0 2px 18px 0 rgba(37,52,78,0.07);
  outline: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
}
.btn-primary {
  background: #F5A623;
  color: #25344E;
}
.btn-primary:hover, .btn-primary:focus {
  background: #25344E;
  color: #fff;
}
.btn-secondary {
  background: #25344E;
  color: #fff;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #F5A623;
  color: #25344E;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 1.8rem;
  display: none;
  color: #F5A623;
  cursor: pointer;
  margin-left: 18px;
  padding: 4px 10px 4px 4px;
  border-radius: 6px;
  transition: background .18s, color .18s;
  z-index: 111;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #F5A623;
  color: #25344E;
}

/****** MOBILE MENU ******/
.mobile-menu {
  position: fixed;
  left: 100%;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #25344E;
  color: #fff;
  z-index: 1500;
  transition: transform .38s cubic-bezier(.57, .08, .19, 1.09);
  will-change: transform;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  box-shadow: 0 4px 44px 0 rgba(37,52,78,0.55);
  /* By default, hidden off screen */
  transform: translateX(0);
}
.mobile-menu.open {
  left: 0;
  /* Slide in from right on open */
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 22px 0 0;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  z-index: 1510;
  border-radius: 8px;
  padding: 2px 7px;
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F5A623;
  color: #25344E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 90%;
  margin: 40px auto 0 auto;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 15px 0 15px 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 8px;
  width: 100%;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5A623;
  color: #25344E;
}

/* --- MAIN & SECTION SPACING --- */
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:not(:last-child) {
  margin-bottom: 60px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}


.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(245,166,35,0.13), 0 1.5px 14px rgba(37,52,78,0.10);
  background: #fff;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 36px rgba(245,166,35,0.22), 0 3px 20px rgba(37,52,78,0.14);
  z-index: 5;
}

.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;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF7EA;
  padding: 28px 18px;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(245,166,35,0.08);
  font-size: 1.07rem;
}

/***** TESTIMONIALS & CARDS *****/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(37,52,78,0.08);
  margin-bottom: 20px;
  padding: 20px 32px 20px 28px;
  border-left: 8px solid #F5A623;
  position: relative;
  min-width: 270px;
  max-width: 700px;
  color: #25344E;
}
.testimonial-card span {
  font-size: 1rem;
  font-weight: 700;
  color: #25344E;
  opacity: .85;
  margin-left: 24px;
}
.testimonial-card p {
  color: #25344E;
  font-size: 1.13rem;
  font-style: italic;
  margin: 0 0 2px 0;
}

/****** FOOTER ******/
footer {
  background: #25344E;
  color: #fff;
  padding: 38px 0 14px 0;
  margin-top: 62px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: #F5A623;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  transition: color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.footer-brand img {
  width: 46px;
  height: auto;
}
.footer-brand p {
  color: #fff;
  opacity: .80;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  text-align: right;
}

/****** TEXT SECTIONS ******/
.text-section {
  background: #fffdfa;
  border-radius: 14px;
  padding: 24px 20px 18px 24px;
  box-shadow: 0 2px 8px rgba(245,166,35,0.08);
  margin-bottom: 20px;
}
.text-section h2, .text-section h3 {
  color: #F5A623;
}

/****** CUSTOM UTILITIES: Lists with feature icons *****/
.features-list, ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em 0;
}
.features-list li,
ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.13rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #25344E;
  margin-bottom: 16px;
}
.features-list li img,
ul li img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.features-list li strong,
ul li strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #25344E;
}

/***** CTA Sections *****/
.section .btn, .content-wrapper .btn {
  margin: 0 0 0 0;
  min-width: 230px;
  font-size: 1.1rem;
  text-align: center;
}
.section .btn + .btn, .content-wrapper .btn + .btn {
  margin-left: 16px;
}

/***** Vibrant High-Energy Highlights *****/
h1, h2, h3 {
  color: #F5A623;
  text-shadow: 0 2px 18px rgba(245,166,35,0.08), 0 2px 1px #fffbe6;
}
h1 {
  line-height: 1.08;
  letter-spacing: -2px;
}

.section {
  box-shadow: 0 8px 38px 0 rgba(245,166,35,0.13), 0 4px 20px 0 rgba(37,52,78,0.13);
  border: 2.5px solid #FFF7EA;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

/* --- BUTTONS --- */
.btn:active {
  transform: scale(0.98);
}
.btn:focus {
  outline: 3px dashed #F5A623;
  outline-offset: 2px;
}

/***** ANIMATIONS & EFFECTS *****/
.btn, .main-nav a, .footer-nav a, .testimonial-card {
  transition: background 0.18s, color 0.18s, box-shadow 0.20s, transform 0.18s;
}
.section, .text-section {
  animation: fadeInUp .52s cubic-bezier(.41,.72,.53,1) 0.08s both;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/***** RESPONSIVE CSS (Mobile-First) *****/
@media (max-width: 1100px) {
  .container {
    max-width: 94vw;
    padding: 0 10px;
  }
  .footer-brand img {
    width: 38px;
  }
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .footer-brand {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 850px) {
  .main-nav {
    gap: 10px;
  }
  .section, main > section {
    padding: 34px 8px;
    margin-bottom: 46px;
  }
}
@media (max-width: 780px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 18px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .main-nav {
    display: none;
  }
  .btn {
    font-size: 1rem;
    padding: 12px 16px;
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section, main > section {
    padding: 25px 8px;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 22px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 16px 12px;
    max-width: none;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.16rem;
  }
  .btn, .btn-primary, .btn-secondary {
    font-size: 0.95rem;
    padding: 10px 12px;
    border-radius: 10px;
    min-width: 140px;
  }
}

/***** COOKIE BANNER AND MODAL *****/
.cookie-banner {
  position: fixed;
  z-index: 20000;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #25344E;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 -4px 40px rgba(37,52,78,0.14);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  animation: slideUpCookie .65s cubic-bezier(.34,1.56,.64,1) 0s both;
}
@keyframes slideUpCookie {
  from { opacity: 0; transform: translateY(100%);} to { opacity: 1; transform: translateY(0);} 
}
.cookie-banner p {
  margin: 0 36px 0 0;
  flex: 1 1 auto;
  font-size: 1rem;
}
.cookie-banner .btn, .cookie-banner button {
  font-size: 1rem;
  margin-left: 8px;
  min-width: 110px;
  padding: 9px 17px;
  border-radius: 9px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(245,166,35,0.08);
}
.cookie-banner .btn-accept {
  background: #F5A623;
  color: #25344E;
}
.cookie-banner .btn-reject {
  background: #fffdfa;
  color: #25344E;
  border: 1.2px solid #F5A623;
}
.cookie-banner .btn-settings {
  background: #25344E;
  color: #F5A623;
  border: 1.2px solid #F5A623;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #F5A623 !important;
  color: #25344E !important;
}
/* Responsive Cookie Banner */
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px 14px 8px;
    gap: 12px;
  }
  .cookie-banner p {
    margin: 0 0 10px 0;
    font-size: 0.97rem;
  }
  .cookie-banner .btn { margin-left: 0; margin-right: 10px; margin-bottom: 6px; }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  position: fixed;
  z-index: 20100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37,52,78,0.73);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .38s cubic-bezier(.47,1.64,.41,.94) both;
}
@keyframes fadeInModal { from { opacity: 0; } to { opacity: 1; } }

.cookie-modal-content {
  background: #fff;
  color: #25344E;
  padding: 38px 34px;
  border-radius: 20px;
  max-width: 420px;
  width: 90vw;
  box-shadow: 0 12px 40px 0 rgba(37,52,78,0.24), 0 4px 12px 0 rgba(245,166,35,0.14);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  font-size: 1.04rem;
}
.cookie-modal-content h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.31rem;
  color: #F5A623;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1.2px solid #FFF7EA;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1.05rem;
  flex: 1 1 80%;
}
.cookie-category input[type="checkbox"] {
  accent-color: #F5A623;
  width: 18px;
  height: 18px;
}
.cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .btn {
  min-width: 105px;
}
@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 14px 6px 20px 8px;
    font-size: 0.97rem;
  }
}

/* --- ADJUST BUTTONS FOR TOUCH DEVICES --- */
@media (hover: none) {
  .btn, button, input[type=submit] {
    touch-action: manipulation;
  }
}

/**** VIBRANT DYNAMIC LAYOUT EXTRAS ****/
.section::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.04;
  background:
    repeating-linear-gradient(-45deg, #F5A623 0 1.8px, transparent 1.8px 15px);
  border-radius: 20px;
  z-index: 0;
}
.content-wrapper > * { position: relative; z-index: 1; }

/**** FORMS (Contact, Newsletter) ****/
input, textarea, select {
  font-family: inherit;
  font-size: 1.08rem;
  border-radius: 7px;
  border: 1.4px solid #F5A623;
  padding: 12px 10px;
  margin-bottom: 18px;
  background: #fffdfa;
  box-shadow: 0 1.7px 9px rgba(245,166,35,0.06);
  outline: none;
  width: 100%;
  transition: border-color .18s, box-shadow .18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #25344E;
  box-shadow: 0 2px 18px rgba(37,52,78,0.13);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 6px;
}

/**** ICON STYLE PATCH ****/
ul li img, .features-list li img {
  filter: drop-shadow(0 1px 6px #FFF7EA) drop-shadow(0 0px 2px #F5A62366);
}

/**** ACCESSIBLE HIGHLIGHT FOR FOCUS ****/
:focus-visible {
  outline: 2.5px solid #F5A623;
  outline-offset: 2px;
}

/**** SCROLLBAR for vibrance ****/
::-webkit-scrollbar {
  width: 10px;
  background: #fffdfa;
}
::-webkit-scrollbar-thumb {
  background: #F5A623;
  border-radius: 9px;
}

/**** Misc Utility Spacings *****/
.mb-2 { margin-bottom: 20px !important; }
.mb-3 { margin-bottom: 30px !important; }
.mt-2 { margin-top: 20px !important; }
.mt-3 { margin-top: 30px !important; }
.gap-20 { gap: 20px !important; }

/****** End Vibrant Energetic CSS Theme for GaumenGlobetrotter ******/
