/* =================== 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, main, 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 {
  scroll-behavior: smooth;
  font-size: 100%;
}
body {
  line-height: 1.6;
  background: #FFF;
  color: #2E4A62;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  position: relative;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2E4A62;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #93B17B;
  outline: none;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 8px;
}
th {
  font-weight: 700;
  background: #F7F5F2;
}
blockquote {
  font-style: italic;
  border-left: 4px solid #93B17B;
  padding-left: 18px;
  color: #2E4A62;
  background: #FFF;
}

/* =================== BRAND COLORS =================== */
:root {
  --primary: #2E4A62;
  --secondary: #93B17B;
  --accent: #EFEFEF;
  --warm-bg: #F8F4EE;
  --warm-card: #FFF8F3;
  --btn-orange: #DE985B;
  --btn-orange-hover: #C77133;
  --contrast: #232B33;
}

/* =================== TYPOGRAPHY =================== */
body, html {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--primary);
  background: var(--warm-bg);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.14;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 600;
}
p, li, td, th {
  font-size: 1rem;
  color: var(--primary);
}
p {
  margin-bottom: 16px;
}
ul, ol {
  margin-left: 0;
  margin-bottom: 16px;
}

strong {
  color: var(--primary);
  font-weight: 700;
}
em {
  color: #AD6B2C;
  font-style: italic;
}

/* =================== LAYOUT CONTAINERS =================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* =================== HEADER & NAVIGATION =================== */
header {
  background: #FFF;
  box-shadow: 0 4px 18px rgba(46, 74, 98, 0.07);
  position: sticky;
  top: 0;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 16px 0;
}
.main-nav > a > img {
  height: 44px;
  border-radius: 8px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 8px 4px;
  border-radius: 6px;
  color: var(--primary);
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: #fff;
  outline: none;
}

/* Call To Action Button */
.cta {
  padding: 12px 28px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--btn-orange);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(222,152,91, 0.15);
  transition: background 0.22s, transform 0.13s, box-shadow 0.13s;
  display: inline-block;
  margin-top: 14px;
  margin-bottom: 8px;
  letter-spacing: .03em;
  outline: none;
}
.cta.primary, .cta:focus {
  background: var(--primary);
  color: #FFF;
  box-shadow: 0 4px 16px rgba(46, 74, 98, 0.07);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.025);
}
.cta:hover, .cta:focus {
  background: var(--btn-orange-hover);
  box-shadow: 0 6px 20px rgba(222,152,91, 0.18);
  color: #FFF;
  transform: translateY(-2px) scale(1.04);
}

/* =================== MOBILE NAV =================== */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  font-size: 2.4rem;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  margin-left: 18px;
  box-shadow: 0 2px 10px rgba(46,74,98,.15);
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.13s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--btn-orange);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(46,74,98,0.98);
  color: #fff;
  z-index: 2002;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: 0 8px 38px rgba(46,74,98,0.22);
  overflow-y: auto;
}
body.menu-open .mobile-menu{
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  background: var(--btn-orange);
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
  transition: background 0.15s;
  box-shadow: 0 2px 20px rgba(46,74,98,.10);
}
.mobile-menu-close:focus, .mobile-menu-close:hover{
  background: var(--btn-orange-hover);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 40px 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  padding: 12px 8px;
  border-radius: 6px;
  font-weight: 500;
  width: 100%;
  transition: background 0.13s, color 0.13s;
  background: none;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
@media (max-width: 1100px) {
  .container {
    max-width: 940px;
  }
  .main-nav {
    gap: 22px;
  }
}
@media (max-width: 960px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 14px;
  }
}
@media (max-width: 820px) {
  .main-nav ul {
    gap: 8px;
    font-size: 0.98rem;
  }
  .cta {
    padding: 10px 19px;
  }
}
@media (max-width: 782px) {
  .main-nav ul {
    gap: 5px;
  }
  .main-nav a {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .main-nav ul, .main-nav .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .main-nav {
    gap: 0;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 8px;
  }
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.38rem;
  }
}

/* =================== HERO SECTIONS =================== */
.hero {
  background: linear-gradient(125deg, var(--warm-card) 80%, var(--secondary) 110%);
  padding: 44px 0 44px 0;
  margin-bottom: 50px;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 260px;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  gap: 8px;
  padding: 0;
  background: none;
}
@media (max-width: 768px) {
  .hero .container {
    min-height: 160px;
  }
  .hero {
    padding: 28px 0 28px 0;
    margin-bottom: 34px;
  }
  .hero .content-wrapper h1{
    font-size: 2rem;
  }
}

/* =================== SECTIONS & FLEX LAYOUTS =================== */
.features, .about, .services, .testimonials, .contact-short, .contact-details,
.features.price-list, .features.group-tours, .features.tour-stories, .features.faq-list {
  background: var(--warm-card);
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(46, 74, 98, 0.04);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.contact-details {
  margin-bottom: 48px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 28px 0 0 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  padding: 22px 20px 20px 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(146,177,123,0.10);
  border: 1px solid #F5F1EB;
  transition: box-shadow 0.18s, transform 0.12s;
}
.feature-item img {
  height: 48px;
  width: 48px;
  border-radius: 12px;
  background: var(--accent);
  box-shadow: 0 2px 7px rgba(146,177,123,0.06);
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 30px rgba(46,74,98,0.09);
  transform: translateY(-2px) scale(1.022);
}
.text-section,
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 18px;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 14px;
  }
}
@media (max-width: 720px) {
  .feature-grid,
  .text-section,
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .feature-item {
    min-width: 0;
    width: 100%;
  }
}

/* =================== TESTIMONIALS =================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(146,177,123,0.044), 0 1.5px 4px rgba(46,74,98,0.045);
  border: 1px solid #F5F1EB;
  max-width: 630px;
  position: relative;
  color: var(--contrast);
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  color: var(--contrast);
}
.testimonial-card .customer {
  font-size: 1rem;
  color: #A0721F;
  font-style: normal;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-top: 6px;
}
.testimonials .testimonial-card:last-child {
  margin-bottom: 0;
}

/* =================== TABLES & PRICE LIST =================== */
table {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 16px;
  box-shadow: 0 1.5px 8px rgba(46,74,98,0.032);
}
thead th {
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .012em;
}
tbody td {
  background: #fff;
}
tbody tr:nth-child(even) td {
  background: #FCFAF7;
}
table tr {
  border-bottom: 1px solid #F0EEE8;
}
tbody tr:last-child {
  border-bottom: none;
}

/* =================== CARDS GENERIC =================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 9px rgba(222,152,91,0.086);
  position: relative;
  padding: 24px 20px;
  min-width: 260px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* =================== CONTACT SHORT/DETAILS =================== */
.contact-short ul, .contact-details ul {
  margin-bottom: 18px;
}
.contact-short a.cta, .contact-details a.cta {
  margin-top: 0;
}
.map-embed-placeholder {
  background: var(--accent);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 12px;
  color: #565656;
  font-style: italic;
  font-size: .98rem;
}

/* =================== FOOTER =================== */
footer {
  background: #fff;
  padding: 0 0 50px 0;
  border-radius: 18px 18px 0 0;
}
footer .container {
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer-nav,
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.97rem;
  margin-bottom: 10px;
}
.footer-nav a, .legal-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  border-radius: 4px;
  padding: 4px 3px;
  transition: background 0.12s, color 0.16s;
}
.footer-nav a:hover, .legal-nav a:hover {
  background: var(--secondary);
  color: #fff;
}
.footer-contact {
  font-size: 0.97rem;
  color: var(--primary);
  margin-bottom: 6px;
}
.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}
.social-links img {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 5px rgba(146,177,123,0.065);
  transition: background 0.16s;
  cursor: pointer;
}
.social-links img:hover, .social-links img:focus {
  background: #fff2de;
}

@media (max-width: 620px) {
  .footer-nav, .legal-nav {
    flex-direction: column;
    gap: 2px;
  }
  .footer-contact p {
    line-height: 1.4;
    margin-bottom: 2px;
  }
}

/* =================== COOKIE CONSENT BANNER =================== */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3001;
  background: #fff7ed;
  color: var(--primary);
  box-shadow: 0 -8px 18px rgba(222,152,91,0.08);
  border-radius: 24px 24px 0 0;
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  max-width: 98vw;
  margin: 0 auto;
  animation: cookie-fade-in 0.5s;
}
@keyframes cookie-fade-in {
  0%{opacity:0;transform:translateY(40px);}
  100%{opacity:1;transform:translateY(0);}
}
#cookie-banner p {
  font-size: 1rem;
  color: var(--primary);
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
#cookie-banner button {
  border-radius: 24px;
  background: var(--btn-orange);
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 20px;
  cursor: pointer;
  margin-right: 3px;
  transition: background 0.18s, transform 0.12s;
  outline: none;
  box-shadow: 0 1.5px 6px rgba(222,152,91,0.09);
}
#cookie-banner button:focus, #cookie-banner button:hover {
  background: var(--btn-orange-hover);
}
#cookie-banner .cookie-settings-btn {
  background: var(--secondary);
  color: #fff;
}
#cookie-banner .cookie-settings-btn:focus, #cookie-banner .cookie-settings-btn:hover {
  background: var(--primary);
}

/* =================== COOKIE MODAL =================== */
#cookie-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  z-index: 3200;
  background: #fff7ed;
  padding: 36px 26px 28px 26px;
  border-radius: 32px;
  min-width: 96vw;
  max-width: 450px;
  box-shadow: 0 2.5px 32px rgba(222,152,91,0.13),0 0 0 1500px rgba(46,74,98,0.48);
  animation: cookie-popup-appear .36s;
}
@keyframes cookie-popup-appear {
  0%{opacity:0;transform:translate(-50%,-38%) scale(0.89);}
  100%{opacity:1;transform:translate(-50%,-50%) scale(1);}
}
#cookie-modal.active {
  display: block;
}
#cookie-modal h3 {
  font-size: 1.18rem;
  margin-bottom: 11px;
}
#cookie-modal ul {
  margin-bottom: 18px;
}
#cookie-modal li {
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
#cookie-modal label {
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  background: var(--accent);
  border: 2px solid var(--secondary);
  border-radius: 15px;
  width: 38px;
  height: 22px;
  position: relative;
  cursor: pointer;
  transition: border 0.18s;
  margin-right: 3px;  
}
.cookie-toggle:checked {
  background: var(--secondary);
  border-color: var(--primary);
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 2.5px;
  box-shadow: 0 1.5px 8px rgba(146,177,123,0.10);
  transition: left 0.18s;
}
.cookie-toggle:checked:before {
  left: 18px;
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 17px;
}
#cookie-modal .modal-actions button {
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 18px;
}
#cookie-modal .cookie-close-btn {
  background: var(--primary);
  color: #fff;
}
#cookie-modal .cookie-close-btn:hover, #cookie-modal .cookie-close-btn:focus {
  background: var(--secondary);
}
#cookie-modal .cookie-save-btn {
  background: var(--btn-orange);
}
#cookie-modal .cookie-save-btn:hover, #cookie-modal .cookie-save-btn:focus {
  background: var(--btn-orange-hover);
}

/* =================== FAQ LAYOUT =================== */
.faq-list .text-section h3 {
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 1.13rem;
  font-weight: 600;
}

/* =================== GENERIC SPACINGS & HELPERS =================== */
@media (max-width: 480px) {
  .section, .features, .about, .services, .testimonials, .contact-short, .contact-details {
    padding: 19px 4px 16px 4px;
    border-radius: 20px;
  }
  .card, .testimonial-card, .feature-item {
    padding: 18px 10px;
    border-radius: 14px;
  }
  #cookie-modal {
    min-width: 98vw;
    border-radius: 18px;
    padding: 14px 6px;
  }
}

/* =================== INTERACTIVE ELEMENTS TRANSITIONS =================== */
button, .cta, input, select {
  transition: background 0.14s, color 0.1s, box-shadow 0.13s, border-color 0.12s;
}

/* =================== FOCUS OUTLINE FOR ACCESSIBILITY =================== */
a:focus, button:focus, .cta:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* =================== HIDE / RESPONSIVE =================== */
@media (max-width: 700px) {
  .footer-nav, .legal-nav {
    font-size: 0.91rem;
  }
  h2 {
    font-size: 1.04rem;
  }
}

/* =================== END OF STYLE =================== */

