/* --- CSS RESET & NORMALIZATION --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #222;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul, ol {
  margin: 0 0 1em 1.25em;
  padding-left: 1.5em;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:focus {
  outline: 2px solid #255D6F;
  outline-offset: 2px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #111;
  margin-bottom: 0.5em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.7em;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5em;
}
h4 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 1.25em;
  color: #222;
}
blockquote {
  font-style: italic;
  background: #f4f1eb;
  padding: 1.25em 1.5em;
  margin: 1em 0;
  border-left: 4px solid #962217;
  border-radius: 6px;
  color: #111;
  max-width: 700px;
}
blockquote span {
  display: block;
  margin-top: 0.5em;
  font-size: 1em;
  color: #666;
}

/* --- CONTAINER & SECTIONS --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  background: #fafafa;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(34,34,34,0.04);
  padding: 32px 28px;
  margin-bottom: 24px;
}
.text-section ul,
.text-section ol {
  margin-bottom: 1em;
}

/* --- FEATURE / CARD STRUCTURES --- */
.feature-grid, .service-grid, .highlights-grid, .testimonials-list, .service-list, .itinerary-cards, .destinations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item, .highlight-item, .service-item, .itinerary-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.07);
  padding: 28px 24px;
  margin-bottom: 20px;
  border: 1.5px solid #ededed;
  transition: box-shadow 0.18s cubic-bezier(.4,0,.2,1), transform 0.16s;
}
.feature-item img, .highlight-item img {
  width: 38px;
  height: 38px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  margin-bottom: 20px;
  padding: 32px 24px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* --- SERVICE GRID, TABLE & LIST --- */
.service-grid, .service-list {
  gap: 20px;
  margin-bottom: 24px;
}
.service-item {
  border-left: 4px solid #255D6F;
  background: #fcfcfc;
  box-shadow: 0 2px 6px rgba(34,34,34,0.03);
  border-radius: 12px;
  padding: 22px 18px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 240px;
  transition: box-shadow 0.2s cubic-bezier(.4,0,.2,1), transform 0.15s;
}
.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #255D6F;
  font-weight: 700;
  margin-top: 10px;
}
.service-item:hover, .feature-item:hover, .card:hover {
  box-shadow: 0 6px 48px rgba(37,93,111,0.10), 0 1.5px 7px rgba(0,0,0,0.05);
  transform: translateY(-4px) scale(1.012);
}

.service-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 26px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  font-size: 1rem;
}
.service-table th,
.service-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid #eaeaea;
  font-family: 'Roboto', Arial, sans-serif;
}
.service-table th {
  background: #f4f1eb;
  font-size: 1.08rem;
  font-family: 'Playfair Display', serif;
}
.service-table tr:last-child td {
  border-bottom: none;
}

/* --- HIGHLIGHT/ITINERARY CARDS --- */
.highlights-grid, .itinerary-cards {
  gap: 24px;
  margin-bottom: 32px;
}
.highlight-item, .itinerary-card {
  min-width: 210px;
  max-width: 340px;
  flex: 1 1 230px;
}

/* --- TESTIMONIALS --- */
.testimonial-slider, .testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 14px;
  background: #f2f2f2;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 390px;
  color: #161616;
  font-size: 1.04rem;
  line-height: 1.5;
  border: 1.5px solid #e0e0e0;
  transition: transform 0.16s cubic-bezier(.4,0,.2,1), box-shadow 0.18s;
}
.testimonial-card .stars {
  color: #D2A86C;
  font-size: 1.15rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 0.2em;
}
.testimonial-card span {
  font-size: 0.98em;
  color: #444;
}
.testimonial-card:hover {
  transform: scale(1.022) translateY(-2px);
  box-shadow: 0 7px 22px rgba(34,34,34,0.13);
}
.secondary-quotes {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.secondary-quotes h3 {
  margin-bottom: 8px;
}
.secondary-quotes blockquote {
  background: #fbfbfa;
  border-left: 3.5px solid #255D6F;
  border-radius: 8px;
  color: #1a1a1a;
}

/* --- CONTACT OVERVIEW --- */
.contact-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 16px;
}
.contact-details, .contact-cta, .map-location, .office-hours {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 160px;
  max-width: 420px;
  flex: 1 1 220px;
}
.contact-details img,
.map-location img,
.office-hours img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
  opacity: 0.82;
}
.contact-details p,
.map-location p,
.office-hours p {
  display: flex;
  align-items: center;
  gap: 6px;
}
/* contact CTA center alignment */
.contact-cta {
  align-items: flex-start;
  justify-content: center;
}

/* --- BUTTONS --- */
.btn-primary {
  padding: 13px 32px;
  background: #191919;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  font-family: 'Roboto', Arial, sans-serif;
  border: none;
  border-radius: 38px;
  box-shadow: 0 2px 16px rgba(37,93,111,0.08);
  letter-spacing: 0.04em;
  cursor: pointer;
  outline: none;
  text-align: center;
  transition: background 0.17s cubic-bezier(.4,0,.2,1), box-shadow 0.12s, color 0.16s;
  margin-top: 10px;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #255D6F;
  color: #fff;
  box-shadow: 0 4px 36px rgba(37,93,111,0.13), 0 2px 8px rgba(0,0,0,0.07);
}

.btn-secondary {
  padding: 11px 28px;
  background: #fff;
  color: #191919;
  border: 1.5px solid #191919;
  border-radius: 32px;
  font-weight: 500;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, border 0.18s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #191919;
  color: #fff;
  border-color: #191919;
}

/* --- HEADER / NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 1.5px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1050;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 64px;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}
.logo img {
  width: 157px;
  height: auto;
  display: block;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  align-items: center;
  margin-left: 24px;
}
.main-nav ul li a {
  color: #111;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.01rem;
  padding: 8px 0px;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  color: #255D6F;
  border-bottom: 2px solid #255D6F;
}
.main-nav .btn-primary {
  margin-left: 32px;
  margin-top: 0;
}

/* Hide burger by default desktop */
.mobile-menu-toggle {
  display: none;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  position: absolute;
  top: 16px;
  right: 22px;
  z-index: 1201;
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: #fff;
  border: none;
  color: #191919;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: background .16s, color .13s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #255D6F;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(34,34,34,0.92);
  z-index: 1510;
  display: flex;
  flex-direction: column;
  transform: translateX(100vw);
  transition: transform 0.34s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 28px 0 0;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: color .14s;
  z-index: 1511;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #D2A86C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 64px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.45rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  padding: 12px 0;
  width: 100%;
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: color .17s, border-color .16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #D2A86C;
  border-bottom: 2.5px solid #D2A86C;
}

/* --- FOOTER --- */
footer {
  background: #222;
  color: #fafafa;
  padding: 38px 0 0 0;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 34px;
  border-bottom: 1.5px solid #393939;
  padding-bottom: 28px;
}
.footer-logo img {
  width: 64px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 8px;
}
.footer-nav a {
  color: #fafafa;
  font-size: 1.02rem;
  opacity: 0.86;
  text-decoration: underline;
  transition: color .15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #D2A86C;
  opacity: 1;
}
.footer-contact p {
  color: #ccc;
  font-size: 0.98rem;
  margin-bottom: 3px;
  opacity: 0.94;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 0 8px 0;
}
.footer-bottom span {
  font-size: 0.96em;
  opacity: 0.69;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #191919;
  color: #f4f1eb;
  z-index: 4020;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 -2px 22px rgba(0,0,0,0.08);
  font-size: 1.02rem;
  animation: cookieSlideUp .6s cubic-bezier(.4,0,.2,1);
  transition: transform 0.24s, opacity 0.24s;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 18px;
  border-radius: 26px;
  border: none;
  margin-right: 6px;
  cursor: pointer;
  transition: background 0.16s, color 0.14s;
}
.cookie-accept {
  background: #255D6F;
  color: #fff;
  font-weight: 700;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #D2A86C;
  color: #191919;
}
.cookie-reject {
  background: #fff;
  color: #191919;
  border: 1.2px solid #191919;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #f4f1eb;
  color: #191919;
}
.cookie-settings {
  background: transparent;
  color: #D2A86C;
  border: 1.1px solid #D2A86C;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #D2A86C;
  color: #191919;
}
.cookie-banner .cookie-actions button:last-child {
  margin-right: 0;
}

/* COOKIES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left: 0;top:0;right:0;bottom:0;
  background: rgba(34,34,34,0.64);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: fadeIn .35s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeIn {
  from{opacity:0;}
  to{opacity:1;}
}
.cookie-modal {
  background: #fff;
  color: #222;
  border-radius: 16px;
  box-shadow: 0 6px 48px rgba(37,93,111,0.10), 0 2px 8px rgba(0,0,0,0.07);
  min-width: 300px; max-width: 96vw;
  padding: 32px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  animation: popIn .36s cubic-bezier(.4,0,.2,1);
  position: relative;
  z-index: 4201;
}
@keyframes popIn {
  from { transform: scale(0.88); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.7rem;
  margin-bottom: 0.45em;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.03em;
}
.cookie-category input[type='checkbox'] {
  width: 20px; height: 20px;
  accent-color: #255D6F;
  border-radius: 4px;
  margin-right: 7px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 19px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal .btn-primary,
.cookie-modal .btn-secondary {
  margin-top: 0;
  min-width: 90px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #222;
  cursor: pointer;
  transition: color .12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #255D6F;
}

/* --- UTILITY CLASSES & HELPERS --- */
.d-none { display: none !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- GENERAL SPACING / RESPONSIVE GAPS --- */
.content-grid, .card-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;
}

/* --- TABLES GENERAL --- */
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  margin-bottom: 2em;
}
thead {
  background: #f4f1eb;
}
th, td {
  padding: 12px 10px;
  font-family: 'Roboto', Arial, sans-serif;
  border-bottom: 1px solid #eaeaea;
  text-align: left;
}
th {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* --- SELECTION COLOR --- */
::selection {
  background: #255D6F;
  color: #fff;
}

/* --- FOCUS STATE --- */
:focus-visible {
  outline: 2px solid #255D6F;
}

/* --- ANIMATIONS/MICRO-INTERACTIONS --- */
.btn-primary, .btn-secondary, .service-item, .feature-item, .testimonial-card, .card {
  transition: box-shadow 0.18s, background 0.16s, color 0.13s, transform 0.14s;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1130px) {
  .container { max-width: 97vw; }
}
@media (max-width: 1025px) {
  .feature-item, .highlight-item, .itinerary-card, .service-item {
    min-width: 190px;
    max-width: 320px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 12px;
    margin-left: 10px;
  }
  .main-nav .btn-primary {
    margin-left: 18px;
    font-size: 0.98rem;
    padding: 11px 20px;
  }
  .footer-wrapper { gap: 22px; }
  section {
    padding: 34px 8px;
  }
  .text-section {
    padding: 18px 9px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }

  .container {
    padding: 0 7vw;
  }
  section,
  .section {
    padding: 30px 8px;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .text-section, .feature-item, .highlight-item, .service-item,
  .itinerary-card, .testimonial-card {
    min-width: 90px;
    max-width: 100%;
    padding: 16px 8px;
  }
  .feature-grid, .service-grid, .highlights-grid, .testimonials-list, .service-list, .itinerary-cards {
    flex-direction: column;
    gap: 20px;
  }
  .testimonials-list, .testimonial-slider {
    gap: 16px;
  }
  .contact-overview {
    flex-direction: column;
    gap: 13px;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: row;
    gap: 15px;
    margin-top: 6px;
    flex-wrap: wrap;
  }
  .map-location, .office-hours, .contact-details {
    max-width: 100%;
  }
  .content-grid, .card-grid {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .main-nav ul,
  .main-nav .btn-primary {
    display: none;
  }
  .logo {
    position: relative;
    z-index: 1202;
  }
  .main-nav {
    gap: 0;
    padding-right: 65px;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 500px) {
  .container {
    padding: 0 2vw;
  }
  section, .section {
    padding: 16px 2px;
    margin-bottom: 24px;
  }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  .btn-primary {
    font-size: 0.97rem;
    padding: 10px 12px;
  }
}

/* --- END CSS --- */