/* --- CSS RESET & BASE TYPOGRAPHY --- */
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,
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;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #22302C;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
section, header, footer, nav, main, aside {
  display: block;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #205C40;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.6,.04,.98,.335);
}
a:hover, a:focus {
  color: #FFB000;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1rem;
}
strong {
  font-weight: 700;
}

/* --- FONT IMPORTS --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

/* --- COLOR VARIABLES --- */
:root {
  --primary: #205C40;
  --secondary: #FFB000;
  --accent: #E6F2EA;
  --text: #22302C;
  --muted: #6D726E;
  --surface: #ffffff;
  --border: #D3E2D8;
}

/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* --- HEADER & NAV --- */
header {
  background: var(--accent);
  border-bottom: 4px solid var(--primary);
  padding: 0;
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 72px;
}
.brand-logo img {
  height: 46px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--primary);
  position: relative;
  text-transform: uppercase;
  padding: 4px 0;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--secondary);
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.cta-btn {
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  border: none;
  border-radius: 10px 36px 10px 36px;
  padding: 14px 32px;
  box-shadow: 0 2px 14px rgba(32,92,64,0.1);
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  margin-left: 18px;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 18px rgba(255,176,0,0.16);
}

/*--- MOBILE NAV ---*/
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  z-index: 111;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--accent);
  box-shadow: 0 6px 32px rgba(32,92,64,0.23);
  transform: translateX(105%);
  transition: transform 0.32s cubic-bezier(0.83,0,0.17,1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 32px;
  min-width: 240px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 32px;
  background: var(--surface);
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 64px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  width: 100%;
  text-transform: uppercase;
  transition: color 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(120deg,var(--accent) 60%,#FFF 100%);
  padding: 40px 0;
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  border-radius: 0 0 52px 0;
  border-left: 8px solid var(--primary);
  border-bottom: 4px solid var(--secondary);
}
.hero .container {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: flex-start;
  min-height: 340px;
}
.hero .content-wrapper {
  max-width: 700px;
  gap: 22px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--primary);
  line-height: 1.1;
  text-shadow: 0 2px 10px #e6f2eab0;
}
.hero .subheadline {
  margin-top: 8px;
  font-size: 22px;
  color: var(--text);
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: .92;
  letter-spacing: .5px;
}
.hero .cta-btn {
  margin-top: 12px;
  align-self: flex-start;
}

/* --- SECTION GEOMETRY & SPACING RULES ---*/
section {
  padding: 20px;
  background: none;
}
section:last-child {
  margin-bottom: 0;
}
.features-grid, .services-list, .testimonials, .itinerary-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.features-grid .feature, .services-list .service, .testimonial-card, .sample-itinerary {
  background: var(--surface);
  border-radius: 22px;
  border: 2.5px solid var(--accent);
  box-shadow: 0 2px 14px rgba(32,92,64,0.055);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  flex: 1 1 260px;
}
.features-grid .feature img {
  height: 52px; width: 52px;
}
.features-grid .feature h3, .services-list .service h3 {
  font-family: 'Montserrat', Arial;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.3px;
}
.features-grid .feature p, .services-list .service p {
  color: var(--muted);
  font-size: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.services-list {
  gap: 24px;
  flex-wrap: wrap;
}
.services-list .service .price {
  color: var(--secondary);
  font-family: 'Montserrat', Arial;
  font-size: 18px;
  font-weight: 700;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* --- TESTIMONIAL CARD --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border: 2.5px solid var(--border);
  box-shadow: 0px 1.5px 14px rgba(32,92,64,0.08);
  border-radius: 20px 52px 20px 16px;
  min-width: 260px;
  flex: 1 1 300px;
  color: var(--text);
}
.testimonial-card p {
  font-size: 18px;
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-meta {
  font-size: 15px;
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* --- CARDS, GEOMETRIC STRUCTURE --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--surface);
  border-radius: 16px 44px 16px 44px;
  border: 2px solid var(--border);
  box-shadow: 0 1.5px 12px rgba(32,92,64,0.065);
  padding: 20px 18px;
}

/* --- PRICING --- */
.pricing .price, .services-list .service .price, .content-wrapper .price {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
}

/* --- VISUAL BUTTONS/QUICK-LINKS --- */
.quick-links {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  align-items: center;
  font-weight: 700;
  color: var(--primary);
}
.quick-links a {
  background: var(--accent);
  padding: 10px 22px;
  border-radius: 16px 6px 16px 6px;
  color: var(--primary);
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: background .2s, color .2s, border-color .2s;
}
.quick-links a:hover, .quick-links a:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--secondary);
}

/* --- TEXT/IMAGE FLEX SECTIONS --- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
}
.text-section ul {
  margin-bottom: 0;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADINGS --- */
h1, .content-wrapper > h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
h2, .content-wrapper > h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 1px;
  margin-bottom: 7px;
  text-transform: uppercase;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
}
p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: .2px;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #fff;
  border-radius: 100px 0 0 0/10px 0 0 0;
  padding: 38px 0 24px 0;
  box-shadow: 0 -2px 14px rgba(35,48,44,0.05);
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 26px;
}
.footer-menu a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.6px;
  font-weight: 500;
  transition: color 0.16s;
  text-decoration: underline rgba(255,255,255,0);
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--secondary);
  text-decoration: underline rgba(255,176,0,0.8);
}
.brand-footer {
  display: flex;
  align-items: center;
}
.brand-footer img {
  height: 32px;
  width: auto;
}
.footer-social {
  display: flex;
  gap: 22px;
  align-items: center;
}
.footer-social img {
  height: 30px;
  cursor: pointer;
  transition: filter .18s;
}
.footer-social img:hover {
  filter: brightness(1.2) drop-shadow(0 3px 8px #E6F2EA99);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #FFF;
  color: var(--text);
  border-top: 4px solid var(--primary);
  box-shadow: 0 -8px 38px rgba(32,92,64,0.19);
  padding: 28px 20px 22px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  z-index: 2000;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 17px;
  animation: cookie-slide-up 0.7s cubic-bezier(.7,.03,.28,.9);
}
@keyframes cookie-slide-up {
  0% { transform: translateY(120px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-text {
  flex: 2 1 340px;
}
.cookie-consent-banner .banner-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-consent-banner .cookie-settings-btn {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-consent-banner .cookie-settings-btn:hover {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2100;
  background: rgba(35,48,44,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal .modal-content {
  background: #fff;
  padding: 36px 30px 28px 30px;
  border-radius: 24px 60px 24px 36px;
  border: 4px solid var(--primary);
  box-shadow: 0 4px 40px rgba(32,92,64,0.18);
  width: 100%;
  max-width: 410px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modal-slide-in 0.3s cubic-bezier(.8,.25,.6,1);
}
@keyframes modal-slide-in {
  from { transform: translateY(-68px) scale(0.92); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--primary);
  font-size: 23px;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
}
.cookie-modal .modal-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--primary);
  width: 19px;
  height: 19px;
  border-radius: 4px;
  border: 1px solid var(--primary);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  padding: 11px 26px;
  font-size: 15px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background .19s;
  cursor: pointer;
}
.cookie-modal .modal-actions button.secondary {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-modal .modal-actions button.secondary:hover,
.cookie-modal .modal-actions button.secondary:focus {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.cookie-modal .modal-actions button:hover,
.cookie-modal .modal-actions button:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* --- FORM/CONTACT/INFO LISTS --- */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-top: 8px;
}
.contact-list a {
  color: var(--primary);
  font-weight: 700;
}

/* --- OL, UL, LI --- */
ul, ol {
  margin: 0 0 10px 0;
  padding-left: 24px;
}
ul li, ol li {
  margin-bottom: 0.5em;
  line-height: 1.62;
  font-size: 16px;
}

/* --- HORIZONTAL RULE etc --- */
hr {
  border: none;
  height: 2px;
  background: var(--accent);
  margin: 32px 0;
}

/* --- MISC UTILS --- */
.hide-desktop { display: none !important; }
.hide-mobile { display: block !important; }

/* --- RESPONSIVE DESIGN: MOBILE FIRST ---*/
@media (max-width: 1080px) {
  .container {
    padding: 0 14px;
  }
  .features-grid, .services-list, .testimonials, .card-container, .content-grid, .footer-menu {
    gap: 16px;
  }
}
@media (max-width: 920px) {
  .main-nav {
    gap: 20px;
  }
  .footer-menu {
    gap: 12px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .content-wrapper > h1 {
    font-size: 32px;
  }
  h2, .content-wrapper > h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
  }
  header .container {
    gap: 16px;
  }
  .hero {
    border-radius: 0 0 16px 0;
    min-height: 180px;
  }
  .hero .container {
    min-height: 180px;
  }
  .hero h1 {
    font-size: 24px;
  }
  .hero .subheadline {
    font-size: 14px;
  }
  h1, .content-wrapper > h1 {
    font-size: 22px;
  }
  h2, .content-wrapper > h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 16px;
  }
  section {
    margin-bottom: 20px;
    padding: 22px 3.6vw;
  }
  .features-grid, .services-list, .testimonials, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .content-wrapper {
    gap: 20px;
  }
  .card {
    padding: 16px 10px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-social {
    gap: 14px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 20px;
    font-size: 15px;
    align-items: flex-start;
    padding: 19px 7px 15px 10px;
  }
  .cookie-modal .modal-content {
    max-width: 97vw;
    min-width: 0;
    padding: 25px 9vw;
  }
}
@media (max-width: 520px) {
  h1, .content-wrapper > h1 { font-size: 17px; }
  h2, .content-wrapper > h2 { font-size: 15px; }
  h3 { font-size: 13px; }
  .brand-logo img { height: 36px; }
  .cookie-consent-banner {
    font-size: 13px;
  }
}

/* --- SCROLLBARS --- */
::-webkit-scrollbar { width: 11px; background: var(--accent); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 8px; }

/* --- MICRO-INTERACTIONS --- */
.card, .feature, .service, .testimonial-card, .footer-social img, .quick-links a, .cta-btn {
  transition: transform 0.14s cubic-bezier(.9,.03,.39,.99), box-shadow 0.19s;
}
.card:hover, .feature:hover, .service:hover, .testimonial-card:hover {
  transform: translateY(-6px) scale(1.011);
  box-shadow: 0 10px 32px rgba(32,92,64,0.13);
  z-index: 1;
}
.quick-links a:active, .cta-btn:active {
  transform: scale(0.98);
}

/* --- VISUAL GEOMETRIC DECORATION (BORDERS) --- */
.features-grid .feature,
.services-list .service,
.testimonial-card,
.sample-itinerary,
.card {
  border-left: 7px solid var(--primary);
  border-top: 3px solid var(--secondary);
  border-bottom: 3px solid var(--secondary);
  border-right: 3px solid var(--accent);
}

/* --- ACCESSIBILITY / FOCUS --- */
a:focus, button:focus, .cta-btn:focus, input:focus, .quick-links a:focus {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

/* --- PRINT STYLES --*/
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal { display: none !important; }
  main, section, .container, .content-wrapper { padding: 0 !important; margin: 0 !important; }
}

/* --- END OF STYLE.CSS --- */
