/* === CSS 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;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F8F9FB;
  color: #273A57;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #273A57;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #F1C40F;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 24px;
}

/* === BRAND FONTS === */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #273A57;
}
h1 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
}
p, li, blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: #273A57;
}
blockquote {
  font-style: italic;
  color: #2d3c5c;
}
strong {
  font-weight: 700;
  color: #273A57;
}
footer p{
  color: white
}
/* === CONTAINERS & LAYOUT STRUCTURE === */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(39,58,87,0.06);
}

@media (min-width: 768px) {
  .section {
    padding: 48px 36px;
    margin-bottom: 72px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(39,58,87,.07);
  padding: 28px 24px;
  flex: 1 1 280px;
  min-width: 275px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(39,58,87,0.13);
  transform: translateY(-5px) scale(1.01);
  z-index: 1;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 11px 0 rgba(39,58,87,0.11);
  max-width: 480px;
  margin-bottom: 20px;
  border-left: 7px solid #F1C40F;
  transition: box-shadow 0.18s;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  color: #273A57;
  line-height: 1.5;
}
.testimonial-card p {
  color: #273A57;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 100%;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 0;
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: linear-gradient(90deg, #305389 0%, #273A57 70%);
  box-shadow: 0 2px 16px 0 rgba(39,58,87,0.07);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  opacity: 0.88;
  font-weight: 500;
  transition: opacity 0.15s, color 0.18s;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  position: relative;
}
header nav a:hover, header nav a:focus {
  opacity: 1;
  color: #F1C40F;
  border-bottom: 2px solid #F1C40F;
}
.primary-cta {
  display: inline-block;
  background: linear-gradient(90deg, #F1C40F 0%, #EDBB25 100%);
  color: #273A57;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 30px;
  border-radius: 30px;
  box-shadow: 0 2px 12px 0 rgba(241,196,15,.15);
  text-align: center;
  margin-left: 18px;
  transition: background 0.22s, color 0.15s, box-shadow 0.18s, transform .15s;
  border: none;
  cursor: pointer;
}
.primary-cta:hover, .primary-cta:focus {
  background: linear-gradient(90deg, #273A57 30%, #F1C40F 100%);
  color: #fff;
  box-shadow: 0 6px 18px 0 rgba(241,196,15,.25);
  transform: scale(1.045);
}

/* Logo sizing */
header .container > a img {
  width: 135px;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  header .container > a img {
    width: 115px;
  }
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  background: #F1C40F;
  border: none;
  border-radius: 6px;
  color: #273A57;
  font-size: 2rem;
  width: 50px;
  height: 44px;
  margin-left: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  z-index: 1401;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #273A57;
  color: #F1C40F;
  box-shadow: 0 4px 14px 0 rgba(241,196,15,.11);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #273A57;
  z-index: 1400;
  display: flex;
  flex-direction: column;
  padding: 0 30px;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.43,.71,.27,1.05);
  box-shadow: 2px 0 28px 0 rgba(39,58,87,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #F1C40F;
  font-size: 2.2rem;
  border: none;
  margin: 22px 0 8px 0;
  align-self: flex-end;
  cursor: pointer;
  z-index: 1402;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 0;
  border-left: 3px solid transparent;
  transition: color 0.17s, border-color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F1C40F;
  border-left: 3px solid #F1C40F;
}
@media (max-width: 1020px) {
  .primary-cta {
    margin-left: 6px;
  }
}
@media (max-width: 880px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .primary-cta {
    margin-left: 6px;
  }
}
@media (max-width: 600px) {
  .mobile-menu {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* === MAIN RESPONSIVE LAYOUTS === */


/* === FORMS & INPUTS === */
input[type='text'],
input[type='email'],
input[type='password'],
textarea, select {
  border: 1.5px solid #bcc7dc;
  border-radius: 7px;
  padding: 12px 14px;
  font-size: 1rem;
  background: #fff;
  color: #273A57;
  transition: border-color 0.15s, box-shadow 0.16s;
  margin-bottom: 18px;
  min-width: 220px;
  max-width: 100%;
  outline: none;
}
input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
textarea:focus,
select:focus {
  border-color: #F1C40F;
  box-shadow: 0 2px 8px 0 rgba(241,196,15,.13);
}

/* === PAGE-SPECIFIC CARDS === */
.hotel-review-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(39,58,87,.09);
  padding: 23px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 5px solid #305389;
  transition: box-shadow .18s;
}
.hotel-review-card h3 {
  margin: 0 0 4px 0;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #273A57;
}
.hotel-review-card span {
  font-weight: 700;
  color: #F1C40F;
}
.hotel-review-card:hover {
  box-shadow: 0 8px 28px 0 rgba(241, 196, 15, 0.09);
}

.team-member-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 11px 0 rgba(39,58,87,0.09);
  padding: 24px 18px 18px 18px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.team-member-card:hover {
  box-shadow: 0 6px 17px 0 rgba(241,196,15,0.09);
  transform: translateY(-3px) scale(1.03);
}

.text-section {
  margin: 14px 0;
  background: #F8F9FB;
  border-radius: 12px;
  padding: 16px 15px;
}
@media (max-width: 600px) {
  .text-section {
    padding: 10px 7px;
  }
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  background: #fff;
  padding: 13px 12px;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 1px 6px 0 rgba(39,58,87,0.06);
}

/* === ICONS IN UL LISTS === */
ul img {
  width: 22px;
  height: 22px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline-block;
}
ul li {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
}

/* === OL, NAV PAGINATION === */
ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
}
nav a {
  font-size: 1rem;
  color: #273A57;
  opacity: 0.8;
  font-weight: 600;
  transition: color 0.15s, opacity 0.14s;
  border-bottom: 2px solid transparent;
}
nav a:hover, nav a.active {
  color: #F1C40F;
  opacity: 1;
  border-bottom: 2px solid #F1C40F;
}
main nav {
  gap: 10px;
}
nav span {
  color: #c0c6d4;
  margin: 0 7px;
}

/* === FOOTER === */
footer {
  background: linear-gradient(90deg, #273A57 40%, #305389 100%);
  color: #fff;
  padding: 30px 0 8px 0;
  box-shadow: 0 -2px 13px 0 rgba(39,58,87,0.06);
  margin-top: 64px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
footer nav {
  gap: 28px;
  margin-bottom: 6px;
}
footer nav a {
  color: #fff;
  opacity: 0.86;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
footer nav a:hover, footer nav a:focus {
  color: #F1C40F;
  opacity:1;
}
footer p {
  font-size: 0.98rem;
  opacity: 0.72;
}

/* === BUTTONS (FOR COOKIE/FORM USE) === */
.button, button, input[type="submit"], input[type="button"] {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F1C40F;
  color: #273A57;
  border: none;
  border-radius: 30px;
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, transform 0.13s;
  margin-right: 10px;
  box-shadow: 0 1px 8px rgba(241,196,15,.06);
}
.button:hover, .button:focus, button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: #273A57;
  color: #fff;
  box-shadow: 0 6px 16px 0 rgba(241,196,15,0.16);
  outline: none;
  transform: scale(1.04);
}
.button.secondary, button.secondary {
  background: #fff;
  color: #273A57;
  border: 1.6px solid #F1C40F;
}
.button.secondary:hover, button.secondary:hover {
  background: #F1C40F;
  color: #273A57;
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #273A57;
  color: #fff;
  padding: 24px 12px 22px 12px;
  box-shadow: 0 -4px 18px 0 rgba(39,58,87,0.19);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.33s cubic-bezier(.54,.13,.13,1.04), opacity 0.21s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 7px;
  flex-wrap: wrap;
}
.cookie-consent-banner .button,
.cookie-consent-banner button {
  min-width: 130px;
  border-radius: 22px;
  font-size: 0.97rem;
  padding: 9px 22px;
}
.cookie-consent-banner .button.settings {
  background: #fff;
  color: #273A57;
  border: 1.3px solid #F1C40F;
}
.cookie-consent-banner .button.settings:hover {
  background: #273A57;
  color: #fff;
}
.cookie-consent-banner .button.reject {
  background: #fff;
  color: #273A57;
  border: 1.3px solid #F1C40F;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39,58,87,0.84);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2100;
}
.cookie-modal {
  background: #fff;
  color: #273A57;
  border-radius: 18px;
  max-width: 420px;
  width: 96vw;
  padding: 32px 28px 22px 28px;
  box-shadow: 0 8px 42px 0 rgba(39,58,87,.24);
  display: flex; flex-direction: column;
  gap: 16px;
  animation: modalFadeIn 0.35s cubic-bezier(.43,.96,.21,1.08);
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(.95) translateY(16px); }
  to { opacity:1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  margin-top: 0;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 26px;
  background: none;
  color: #273A57;
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 15px 0 0 0;
}
.cookie-modal .toggle-label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .toggle-switch {
  width: 40px;
  height: 24px;
  border-radius: 16px;
  background: #eee;
  position: relative;
  transition: background 0.21s;
  cursor: pointer;
  margin-left: 18px;
}
.cookie-modal .toggle-switch[data-enabled="true"] {
  background: #F1C40F;
}
.cookie-modal .toggle-switch:before {
  content: '';
  display: block;
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s;
  box-shadow: 0 2px 8px rgba(39,58,87,0.04);
}
.cookie-modal .toggle-switch[data-enabled="true"]:before {
  left: 20px;
}
.cookie-modal .cookie-category .locked {
  color: #F1C40F;
  font-size: 1.1rem;
  margin-left: 6px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal-actions .button {
  min-width: 108px;
  padding: 8px 22px;
  border-radius: 22px;
}

/* === MEDIA QUERIES (RESPONSIVE) === */
@media (max-width: 1220px) {
  .container {
    max-width: 100vw;
  }
}
@media (max-width: 980px) {
  .container {
    padding: 0 8px;
  }
  .section {
    padding: 30px 8px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 16px 3px;
    margin-bottom: 33px;
    border-radius: 10px;
  }
  .testimonial-card, .team-member-card, .hotel-review-card {
    padding: 13px 8px;
    border-radius: 10px;
  }
  h1 {
    font-size: 1.38rem;
  }
  h2 {
    font-size: 1.19rem;
  }
}

/* === ANIMATIONS & INTERACTIONS === */
.card, .hotel-review-card, .testimonial-card, .team-member-card {
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .hotel-review-card:hover, .team-member-card:hover {
  box-shadow: 0 8px 22px 0 rgba(39,58,87,0.12);
  transform: translateY(-2px) scale(1.02);
  z-index: 1;
}

.primary-cta, .button, .mobile-menu-toggle {
  transition: background 0.22s, color 0.18s, box-shadow 0.18s, transform 0.14s;
}

@media (hover: none) and (pointer: coarse) {
  .card:hover, .primary-cta:hover, .button:hover, .hotel-review-card:hover, .team-member-card:hover {
    /* Prevent hover sticking on touch devices */
    box-shadow: none;
    transform: none;
  }
}

::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-thumb {
  background: #d6dceb;
  border-radius: 6px;
}
::-webkit-scrollbar-track {
  background: #fafdff;
}

/* === EXTRAS, HELPERS, ACCESSIBILITY === */
.visually-hidden {
  position: absolute!important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* === GRADIENT SECTIONS / VISUAL ELEMENTS === */
.section:first-of-type, .section.hero, .section.intro {
  background: linear-gradient(111deg, #fff 75%, #F1C40F 110%);
  box-shadow: 0 2px 30px 0 rgba(241,196,15,0.08);
}

.section.cta-section {
  background: linear-gradient(90deg, #F1C40F 0%, #fff 70%);
}

/* === FLEXBOX SPACING OVERRIDES (MANDATORY) === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* === END === */