/* ================================
   CSS 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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0; padding: 0; border: 0; vertical-align: baseline;
  box-sizing: border-box;
}
html { font-size: 16px; }
body { line-height: 1.5; background: #F7F9FB; color: #2C3E50; min-height: 100vh; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea {
  font-family: inherit; font-size: inherit;
  border: none; outline: none; background: none;
}
button { cursor: pointer; background: none; }

/* ================================
   BRAND COLORS & FONTS
=================================== */
:root {
  --brand-primary: #2C3E50;
  --brand-secondary: #D4AF37;
  --brand-accent: #FFFFFF;
  --brand-gray: #F7F9FB;
  --btn-shadow: 0 4px 16px 0 rgba(212,175,55,0.12);
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--brand-gray);
  color: var(--brand-primary);
}
h1,h2,h3,h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; color: var(--brand-primary); }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
p { margin-bottom: 14px; }
.tagline {
  color: var(--brand-secondary); font-style: italic;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* Playful Dynamic Font Enhancements */
h1, h2 {
  font-family: 'Montserrat', 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
  letter-spacing: 0.03em;
}

/* ================================
   LAYOUT CONTAINERS & SPACING
=================================== */
.container {
  width: 100%; max-width: 1200px; 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;
}

/* Card Containers, Grids, Flex Patterns */
.card-container, .feature-grid, .card-grid, .content-grid {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.content-grid { gap: 20px; justify-content: space-between; }
.card {
  background: var(--brand-accent); border-radius: 18px; box-shadow: 0 12px 32px 0 rgba(0,0,0,.06);
  margin-bottom: 20px; padding: 28px 24px; position: relative;
}

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

/* ================================
   HEADER & NAVBAR
=================================== */
header {
  background: var(--brand-accent);
  border-bottom: 3px solid var(--brand-secondary);
  padding: 0;
  width: 100%;
}
header .container {
  display: flex; align-items: center; justify-content: space-between; padding: 12px 20px;
}
header nav {
  display: flex; align-items: center; gap: 24px;
}
header nav a {
  color: var(--brand-primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.07rem;
  padding: 8px 14px;
  border-radius: 12px;
  transition: background 0.22s;
  position: relative;
}
header nav a:hover {
  background: var(--brand-secondary);
  color: var(--brand-accent);
  box-shadow: 0 2px 16px 0 rgba(212,175,55,0.08);
}
.button-primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif; font-size: 1rem;
  font-weight: 700;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  padding: 10px 28px;
  border-radius: 18px;
  margin-left: 12px;
  box-shadow: var(--btn-shadow);
  transition: background 0.22s, transform 0.18s;
  border: 2px solid var(--brand-secondary);
  position: relative;
}
.button-primary:hover, .button-primary:focus {
  background: var(--brand-primary);
  color: var(--brand-accent);
  border-color: var(--brand-secondary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px 0 rgba(44,62,80,0.10);
}

/* ----------------------
   Mobile Menu
------------------------ */
.mobile-menu-toggle {
  font-size: 2.3rem;
  border-radius: 50%;
  width: 46px; height: 46px;
  display: none;
  align-items: center; justify-content: center;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: none;
  transition: background 0.18s, color 0.18s;
  z-index: 1200;
}
.mobile-menu-toggle:hover {
  background: var(--brand-primary);
  color: var(--brand-accent);
}
.mobile-menu {
  position: fixed; top: 0; right: 0; width: 100vw; height: 100vh;
  background: rgba(44,62,80,0.98);
  color: var(--brand-accent);
  z-index: 1500;
  display: flex; flex-direction: column; align-items: flex-end;
  transform: translateX(100vw); transition: transform 0.35s cubic-bezier(0.45,0.01,0.21,1.04);
  box-shadow: -10px 0 32px 0 rgba(44,62,80,.1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  background: none; color: var(--brand-accent);
  margin: 24px 22px 0 0; border-radius: 50%; border: none;
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.mobile-menu-close:hover {
  background: rgba(255,255,255,0.08);
}
.mobile-nav {
  display: flex; flex-direction: column; align-items: stretch; gap: 24px;
  width: 100%; margin-top: 40px; padding: 0 36px;
}
.mobile-nav a {
  color: var(--brand-accent);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.35rem; font-weight: 700;
  padding: 18px 0 12px 8px;
  border-radius: 9px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  text-indent: 6px;
}

/* Hide desktop nav on mobile, show burger btn */
@media (max-width: 980px) {
  header nav { display: none; }
  .mobile-menu-toggle {
    display: flex; position: relative;
  }
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
}

/* ================================
   HERO SECTION
=================================== */
.hero {
  background: linear-gradient(85deg, #FFF8E1 10%, #F7F9FB 90%);
  min-height: 46vh;
  display: flex; align-items: center;
  margin-bottom: 60px;
}
.hero .container {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0;
  min-height: 320px;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 650px;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 20px;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.7rem;
  line-height: 1.17;
}
.hero p {
  color: #53481A;
  font-size: 1.2rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.hero .button-primary {
  margin-top: 16px;
}

/* Hero Playful Animation */
.hero h1 {
  animation: hero-pop 1s cubic-bezier(.55,1.5,.55,1.03);
}
@keyframes hero-pop {
  0% { transform: scale(0.94); opacity: 0; }
  80% { transform: scale(1.03); }
  100% { transform: scale(1); opacity: 1; }
}

/* ================================
   FEATURES & CARD ELEMENTS
=================================== */
.features {
  margin-bottom: 60px; padding: 40px 20px;
  background: #FEF6F1;
  border-radius: 32px 32px 28px 28px;
  box-shadow: 0 8px 28px 0 rgba(212,175,55,0.08);
}
.feature-grid {
  display: flex; flex-wrap: wrap; gap: 24px;
  margin-top: 20px;
}
.feature-card {
  background: #FFF9EA;
  border-radius: 22px;
  box-shadow: 0 6px 18px 0 rgba(212,175,55,0.12);
  padding: 32px 24px 24px 24px;
  min-width: 240px;
  max-width: 330px;
  flex: 1 1 220px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
  transition: transform 0.2s, box-shadow 0.25s;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.035) rotate(-2deg);
  box-shadow: 0 14px 44px 0 rgba(44,62,80,0.10), 0 4px 20px 0 rgba(212,175,55,0.08);
  z-index: 2;
}
.feature-card img {
  width: 44px; height: 44px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: #FFF6CF;
  padding: 7px;
  animation: playful-bounce 1.5s infinite ease-in-out alternate;
}
@keyframes playful-bounce {
  0% { transform: translateY(0); }
  60% { transform: translateY(-7px) scale(1.12); }
  100% { transform: translateY(0); }
}
.feature-card h3 {
  color: var(--brand-primary);
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature-card p {
  color: #6B6156;
  font-size: 1rem;
  font-weight: 400;
}

/* Extra playful shadow on active */
.feature-card:active {
  transform: scale(0.97) rotate(2deg);
  box-shadow: 0 2px 8px rgba(44,62,80,0.07);
}

/* ================================
   ABOUT, SERVICES, LISTS
=================================== */
.about, .services, .contact-details {
  margin-bottom: 60px; padding: 40px 20px;
  background: var(--brand-accent);
  border-radius: 28px;
  box-shadow: 0 6px 18px 0 rgba(44,62,80,0.07);
}
.content-wrapper > ul,
.content-wrapper > ol {
  margin-top: 6px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.content-wrapper > ul li,
.content-wrapper > ol li {
  font-size: 1.025rem;
  position: relative;
  padding-left: 22px;
}
.content-wrapper > ul li:before {
  content: '\2022';
  color: var(--brand-secondary);
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 1.4em;
  font-family: 'Montserrat', sans-serif;
  opacity: 0.74;
}
.content-wrapper > ol {
  counter-reset: num;
}
.content-wrapper > ol li:before {
  counter-increment: num;
  content: counter(num) ". ";
  color: var(--brand-secondary);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.09em;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
.certifications {
  display: flex; flex-wrap: wrap; gap: 18px; margin-top: 14px;
  font-size: 0.98rem;
  color: var(--brand-secondary);
  font-weight: 600;
}
.sample-itinerary {
  background: #FFFBE6;
  border-radius: 13px;
  padding: 18px 20px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px 0 rgba(212,175,55,0.09);
}

/* ================================
   TESTIMONIALS
=================================== */
.testimonials {
  margin-bottom: 60px; padding: 40px 20px;
  background: #E6F3FF;
  border-radius: 28px;
  box-shadow: 0 4px 15px 0 rgba(44,62,80,0.08);
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-card {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 20px; padding: 20px; margin-bottom: 20px;
  background: var(--brand-accent);
  border-radius: 14px;
  box-shadow: 0 4px 18px 0 rgba(44,62,80,0.10);
  border-left: 5px solid var(--brand-secondary);
  transition: box-shadow 0.18s, border-color 0.16s;
  min-width: 220px; max-width: 640px;
  color: #262833;
  font-size: 1.04rem;
}
.testimonial-card p {
  font-size: 1.16rem;
  color: #2C3E50;
  margin-bottom: 2px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.testimonial-card span {
  font-size: 1rem; color: #806100; opacity: 0.89;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 0;
}
.star-rating {
  color: #FFD700; font-size: 1.18rem;
  letter-spacing: 0.12em;
}
.testimonial-card:hover {
  border-color: #F8E254;
  box-shadow: 0 10px 36px 0 rgba(44,62,80,0.13);
  z-index: 2;
}

/* Accessibility: Ensure text contrast */
.testimonial-card p, 
.testimonial-card span { color: #222733; }

/* ================================
   CONTACT DETAILS
=================================== */
.contact-details {
  margin-bottom: 60px; padding: 40px 20px;
}
.contact-details ul li a { color: var(--brand-secondary); text-decoration: underline; }

/* ================================
   FOOTER STYLES
=================================== */
footer {
  background: var(--brand-primary);
  color: var(--brand-accent);
  padding: 42px 0 18px 0;
  border-radius: 32px 32px 0 0;
}
footer .container {
  display: flex; flex-direction: column; align-items: flex-start;
}
footer nav {
  display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 14px;
}
footer nav a {
  color: var(--brand-accent);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.03rem; font-weight: 500; opacity: 0.94;
  border-radius: 8px; padding: 6px 8px;
  transition: background 0.16s, color 0.14s;
}
footer nav a:hover {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
footer .footer-main {
  width: 100%; display: flex; flex-wrap: wrap;
  gap: 28px; align-items: center; justify-content: flex-start;
  margin-bottom: 20px;
}
.footer-contact a {
  color: var(--brand-accent); font-weight: 700;
  text-decoration: underline; font-size: 1.1rem;
}
.footer-social {
  display: flex; gap: 14px; margin: 18px 0 8px 0;
  align-items: center;
}
.footer-social img {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff3;
  padding: 3px;
  transition: background 0.16s;
}
.footer-social img:hover {
  background: var(--brand-secondary);
}
.footer-legal {
  margin-top: 6px; font-size: 0.93rem; opacity: 0.88;
  color: #FFE6A5;
}

/* ================================
   COOKIES CONSENT BANNER & MODAL
=================================== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; width: 100vw; z-index: 9999;
  background: #FFF9EA;
  color: var(--brand-primary);
  box-shadow: 0 -6px 22px 0 rgba(44,62,80,0.11);
  display: flex; align-items: center; justify-content: center;
  padding: 18px 20px;
  transition: transform 0.3s cubic-bezier(.52,1.5,.23,1.13), opacity 0.25s;
  opacity: 1;
  transform: translateY(0);
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100px);
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex; gap: 14px; margin-left: 20px;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  padding: 7px 16px;
  border-radius: 13px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.15s, color 0.13s;
  margin: 0 1px;
}
.cookie-banner .accept {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-banner .accept:hover {
  background: var(--brand-primary);
  color: var(--brand-accent);
}
.cookie-banner .reject {
  background: #FFDEE1;
  color: #871B2C;
}
.cookie-banner .reject:hover {
  background: #FBCFD1;
}
.cookie-banner .cookie-settings-btn {
  background: #E6F6ED;
  color: #287846;
}
.cookie-banner .cookie-settings-btn:hover { background: #C4F2D2; }

.cookie-modal {
  position: fixed; bottom: 0; left: 50%; transform: translate(-50%,100vh);
  width: 96vw; max-width: 450px; z-index: 9999;
  background: #FFFFFF;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -12px 36px 0 rgba(44,62,80,0.19);
  padding: 32px 28px 22px 28px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(.42,1.3,.17,1.03), opacity 0.22s;
  color: var(--brand-primary);
  display: flex; flex-direction: column; gap: 16px;
}
.cookie-modal.open {
  opacity: 1;
  transform: translate(-50%,0);
  pointer-events: all;
}
.cookie-modal h3 {
  color: var(--brand-secondary);
  margin-bottom: 10px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.cookie-modal .cookie-category {
  display: flex; align-items: center; gap: 14px; margin-bottom: 10px;
  font-size: 1.1rem;
}
.cookie-modal .cookie-toggle {
  width: 36px; height: 20px;
  border-radius: 13px;
  background: #E1E6F1;
  position: relative;
  margin-left: 7px;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .cookie-toggle.active {
  background: #C7F3CC;
}
.cookie-modal .cookie-toggle::before {
  content: '';
  position: absolute; left: 2px; top: 2px;
  background: #FFF;
  width: 16px; height: 16px;
  border-radius: 50%;
  transition: left 0.17s;
}
.cookie-modal .cookie-toggle.active::before {
  left: 18px; background: #49C779;
}
.cookie-modal .cookie-essential {
  opacity: 0.65;
}
.cookie-modal .cookie-buttons {
  display: flex; gap: 13px; margin-top: 10px;
}
.cookie-modal .close-cookie-modal {
  position: absolute; top: 16px; right: 16px;
  font-size: 2rem;
  background: none; color: #ac8400;
  border: none; border-radius: 50%; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  z-index: 9002;
  transition: background 0.14s;
}
.cookie-modal .close-cookie-modal:hover { background: #F6E8C5; }

/* ================================
   MICRO-INTERACTIONS & ANIMATIONS
=================================== */
a, button, .feature-card, .button-primary, .mobile-menu, .mobile-nav a {
  transition-property: background, color, box-shadow, transform;
  transition-duration: 0.15s, 0.15s, 0.18s, 0.18s;
  transition-timing-function: cubic-bezier(.55,.11,.21,1.05);
}
.button-primary, .cookie-banner button {
  transition: background 0.22s, color 0.20s, box-shadow 0.20s, transform 0.18s;
}

/* Playful floating animation for cards */
@media (hover: hover) {
  .feature-card:hover { animation: card-float 1.1s cubic-bezier(.58,1.3,.22,1.07) forwards; }
  @keyframes card-float { 
    0% { box-shadow: 0 6px 18px 0 rgba(212,175,55,0.13); }
    60% { transform: scale(1.055) rotate(-2deg); }
    100% { }
  }
}

/* ================================
   RESPONSIVE MOBILE LAYOUTS
=================================== */
@media (max-width: 1200px) {
  .container { max-width: 99vw; padding: 0 12px; }
}
@media (max-width: 840px) {
  .hero .container, .section .container {
    padding: 0 8px;
  }
  .feature-grid, .card-container, .content-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .section, .about, .features, .testimonials, .services, .contact-details {
    padding: 22px 5px;
    margin-bottom: 34px;
    border-radius: 14px;
  }
  .content-wrapper { gap: 14px; }
  .feature-grid{
    flex-direction: column;
    align-items: stretch;
  }
  .feature-card {
    min-width: 0; max-width: none; width: 100%;
    padding: 21px 10px 18px 14px;
    border-radius: 15px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 16px 9px;
    font-size: 1.01rem;
  }
  footer .container {
    padding: 0 6px;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 13px;
    align-items: flex-start;
  }
}
@media (max-width: 510px) {
  .container { padding: 0 2px; }
  .feature-card { padding: 13px 5px 12px 8px; }
  .hero h1{ font-size:1.4rem;}
  .hero p{ font-size:0.95rem; }
  .testimonial-card, .section, .about, .features, .services, .contact-details {
    padding: 8px 3px;
  }
  header .container { padding: 6px 2px; }
}

/* ================================
   GENERAL UTILITY CLASSES
=================================== */
.button-secondary {
  background: var(--brand-primary);
  color: var(--brand-accent);
  border-radius: 16px;
  font-weight: 600;
  padding: 7px 18px;
  border: 2px solid var(--brand-secondary);
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

strong { color: var(--brand-primary); font-weight: 600; }

/* ================================
   FORM & INPUT STYLES
=================================== */
input, textarea, select {
  border-radius: 9px;
  background: #FFF9EA;
  border: 1.5px solid #EEE7C5;
  padding: 10px 13px;
  margin: 0 0 10px 0;
  width: 100%;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--brand-secondary);
  border-color: var(--brand-secondary);
}

/* ================================
   MISC & OVERRIDES
=================================== */
::selection { background: #FFD33F; color: #2C3E50; }
::-webkit-scrollbar { width: 10px; background: #F9F6EA; }
::-webkit-scrollbar-thumb { background: #E6CA6B; border-radius: 8px; }

/* ================================
   HIGH CONTRAST ACCESSIBILITY
=================================== */
.button-primary, .button-secondary, .cookie-banner button {
  outline: none;
}
.button-primary:focus, .button-secondary:focus, .cookie-banner button:focus {
  outline: 2px solid #393;
}

/* ================================
   Z-INDEX LAYERING (for menu/modal)
=================================== */
header { z-index: 100; position: relative; }
footer { z-index: 20; position: relative; }

/* ================================
   PRINT STYLES (Hide nav, banners)
=================================== */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal, header nav, footer { display: none !important; }
}
