/* =============================
   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;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F7F8FC;
  color: #16407F;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
* {
  box-sizing: inherit;
}

/* =============================
   CSS VARIABLES
============================= */
:root {
  --primary: #16407F;
  --secondary: #F2C230;
  --accent: #FFFFFF;
  --bg-light: #F7F8FC;
  --surface: #FFFFFF;
  --shadow: 0 4px 16px 0 rgba(22,64,127,0.07);
  --radius: 22px;
  --gap: 20px;
  --gap-lg: 30px;
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ============================
   TYPOGRAPHY
============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--primary);
}
h1 { font-size: 2.3rem; margin-bottom: 20px; }
h2 { font-size: 1.7rem; margin-bottom: 16px; }
h3 { font-size: 1.12rem; margin-bottom: 12px; font-weight: 700; }
.section h1, .section h2, .section h3 {
  margin-top: 0;
}
p, ul, ol { font-family: var(--font-body); font-size: 1rem; margin-bottom: 8px; }
ul, ol {
  margin-bottom: 12px;
}
strong {
  color: var(--primary);
  font-weight: 700;
}

/* Fun font for numbers/statistics */
.stat-item h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--secondary);
  font-weight: 900;
  letter-spacing: 0.04em;
}

/* ================
   CONTAINERS & LAYOUT
================ */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  background: none;
  border-radius: 0;
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* CTA Section */
.cta {
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta h2, .cta p {
  color: var(--primary);
}

/* =====================
     FLEX PATTERNS
===================== */
.card-container, .card-grid, .feature-grid, .stats-grid, .testimonial-grid, .review-list, .trip-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section, .text-section-row {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF8DB;
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow);
  min-width: 188px;
  flex: 1 1 230px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.feature-item:hover {
  transform: translateY(-8px) scale(1.03) rotate(-1deg);
  box-shadow: 0 6px 24px 0 rgba(34,35,58,0.12);
  background: #FEF5CB;
}
.stats-grid {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.stat-item {
  min-width: 146px;
  background: #DDEAFF;
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  transition: transform 0.16s;
}
.stat-item:hover {
  transform: scale(1.05) rotate(1deg);
  background: #F2C23036;
}

.testimonial-slider, .testimonial-grid, .review-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
  background: #FFF;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px 0 rgba(22,64,127,0.09);
  min-width: 250px;
  max-width: 360px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.14s;
  color: #262626;
}
.testimonial-card:hover {
  transform: translateY(-4px) rotate(0.7deg) scale(1.02);
  box-shadow: 0 12px 32px 0 rgba(22,64,127,0.12);
}
.testimonial-card p {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: #212121;
}
.testimonial-card span {
  color: #3b3b3b;
  font-size: 15px;
  margin-top: 0;
}
.stars, .star-ratings {
  display: flex;
  gap: 2px;
  margin-top: 8px;
}

/* Trip Listing (wycieczki) */
.trip-listing {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.trip-item {
  flex: 1 1 270px;
  background: #DEFAFA;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  min-width: 210px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.trip-item:hover {
  transform: scale(1.03) rotate(-1.2deg);
  box-shadow: 0 14px 32px 0 rgba(90,180,204,0.14);
  background: #B2EFF5;
}

/* Service List */
.service-list li {
  background: #F3D92125;
  padding: 16px 18px;
  border-radius: 18px;
  margin-bottom: 13px;
  font-size: 16.5px;
  font-family: var(--font-body);
}
.service-list li h3 {
  margin-bottom: 4px;
}

/* Other lists */
.value-list li, .step-list li, .process-steps li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 16.25px;
  line-height: 1.4;
  margin-bottom: 13px;
  background: #FFF;
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: 0 1px 4px 0 rgba(22,64,127,0.03);
}
.value-list img, .step-list img, .process-steps img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

/* .faq-list for accordions (simple styling) */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.faq-item {
  background: #F7F8FC;
  border-left: 6px solid var(--secondary);
  border-radius: 14px;
  padding: 16px 18px;
  transition: box-shadow 0.16s;
  box-shadow: 0 1px 4px 0 rgba(22,64,127,0.06);
}
.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 5px;
}

/* =====================
   HEADER & NAVBAR
===================== */
header {
  background: var(--primary);
  color: var(--accent);
  width: 100%;
  padding: 0;
  box-shadow: 0 6px 44px 0 rgba(22,64,127,0.11);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
  padding: 0 20px;
}
.logo img {
  width: 144px;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 4px 12px rgba(22,64,127,0.10));
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.07rem;
  font-weight: 700;
}
.main-nav a {
  color: var(--accent);
  font-weight: 700;
  border-radius: 10px;
  padding: 7px 16px;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 6px 0 rgba(242,194,48,0.10);
}
.cta-btn {
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.13rem;
  border-radius: 18px;
  padding: 11px 28px 11px 28px;
  box-shadow: 0 4px 12px 0 rgba(242,194,48,.07);
  transition: background 0.17s, color 0.18s, transform 0.14s, box-shadow 0.19s;
  margin-left: 20px;
  border: none;
  cursor: pointer;
  outline: none;
  display: inline-block;
  letter-spacing: 0.03em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFE67C;
  color: #16407F;
  transform: scale(1.066) rotate(-1deg);
  box-shadow: 0 8px 28px 0 rgba(242,194,48,.16);
}

.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  outline: none;
  font-size: 2.2rem;
  border-radius: 12px;
  padding: 3px 12px 2px 12px;
  margin-left: 14px;
  cursor: pointer;
  box-shadow: 0 2px 6px 0 rgba(34,34,34,0.06);
  transition: background 0.15s, box-shadow 0.19s, color 0.16s, transform 0.14s;
  z-index: 41;
}
.mobile-menu-toggle:active {
  background: #FFE67C;
  color: #103069;
}

/* =====================
   MOBILE MENU OVERLAY
===================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 88vw;
  max-width: 380px;
  background: var(--primary);
  color: var(--accent);
  box-shadow: -8px 0 32px rgba(22,64,127,0.13);
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(.72,.02,.77,1.14);
  z-index: 120;
  display: flex;
  flex-direction: column;
  padding: 30px 24px 30px 16px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--secondary);
  font-size: 2.33rem;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 26px;
  transition: color 0.16s;
}
.mobile-menu-close:hover {
  color: #fff7c0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
  font-size: 1.2rem;
  font-family: var(--font-display);
}
.mobile-nav a {
  background: #ffffff10;
  color: var(--secondary);
  padding: 12px 10px 12px 20px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: background 0.15s, color 0.13s;
  margin-right: 12px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* ==============
   HERO
=============== */
.hero {
  background: linear-gradient(120deg, #F2C23012 25%, #41e6d640 100%);
  min-height: 310px;
  padding: 52px 0 56px;
  border-radius: 0 0 var(--radius) var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  font-size: 2.41rem;
  line-height: 1.13;
  letter-spacing: -1.1px;
}
.hero p {
  font-size: 1.17rem;
  margin-bottom: 0;
  color: #17387a;
}

/* =====================
   SECTION GENERAL
===================== */
section {
  margin-bottom: 60px;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

/* =====================
   CARDS
===================== */
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface);
  transition: transform 0.15s, box-shadow 0.18s;
}
.card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 26px 0 rgba(22,64,127,0.16);
}

/* ========================
   FOOTER
======================== */
footer {
  background: #173462;
  color: var(--accent);
  padding: 46px 0 30px 0;
  font-family: var(--font-body);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 34px;
  justify-content: space-between;
}
.footer-logo img {
  width: 116px;
  filter: none;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 6px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 1.09rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 6px 12px;
  transition: background 0.18s, color 0.15s;
}
.footer-nav a:hover {
  background: var(--secondary);
  color: var(--primary);
}
.footer-contact {
  font-size: 15px;
  color: #eaf4ff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 3px;
}
.footer-contact img {
  width: 18px; height: 18px;
  margin-right: 6px;
  vertical-align: sub;
}

/* ==========================
   BUTTONS
========================== */
button, .cta-btn {
  font-family: var(--font-display);
  border: none;
  outline: none;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s, color 0.17s, box-shadow 0.16s, transform 0.13s;
}
button:focus, .cta-btn:focus {
  outline: 3px solid #fd0;
  outline-offset: 2px;
}

/* ==========================
   SPACING & GAPS
========================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .card-grid, .feature-grid, .stats-grid, .testimonial-grid, .trip-listing, .content-grid {
  gap: 24px;
}
.text-image-section {
  gap: 30px;
}
.card {
  margin-bottom: 20px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}
.feature-item {
  gap: 15px;
}

/* =============================
   PLAYFUL DYNAMIC ACCENTS
============================= */
.feature-item img, .value-list img, .step-list img, .process-steps img {
  filter: drop-shadow(0 3px 6px rgba(22,64,127,0.11));
  border-radius: 50%;
  background: #FFFBE6;
  padding: 8px;
  transition: transform 0.17s;
}
.feature-item:hover img {
  transform: rotate(-11deg) scale(1.09);
}
.trip-item {
  /* see above trip-item rules for playful effect */
}

/* Micro-interactions on hover */
.trip-listing .trip-item:hover {
  box-shadow: 0 14px 32px 0 rgba(90,180,204,0.14);
  background: #B2EFF5;
  transform: scale(1.04) rotate(-1deg);
}

/* Animated underline on nav links */
.main-nav a, .footer-nav a {
  position: relative;
}
.main-nav a::after, .footer-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 4px;
  border-radius: 2.5px;
  background: var(--secondary);
  transition: width .20s;
  margin: 0 auto 0 0;
}
.main-nav a:hover::after, .footer-nav a:hover::after {
  width: 60%;
}

/* Fun shape accent on .cta */
.cta {
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -50px;
  width: 140px;
  height: 140px;
  background: #fffbe6;
  border-radius: 60% 70% 68% 81%;
  z-index: 1;
  box-shadow: 0 4px 24px 0 rgba(255,246,124,0.11);
  pointer-events: none;
  opacity: 0.65;
}
.cta .content-wrapper {
  position: relative;
  z-index: 2;
}

/* =============================
   RESPONSIVE DESIGN
============================= */
@media (max-width: 1100px) {
  .content-wrapper, .container {
    max-width: 96vw;
  }
  .card-grid, .testimonial-grid, .feature-grid, .stats-grid, .review-list, .trip-listing {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .card-grid, .testimonial-grid, .content-grid, .feature-grid, .stats-grid, .trip-listing {
    flex-wrap: wrap;
    gap: 14px;
  }
  .feature-item, .stat-item, .trip-item {
    min-width: 120px;
    max-width: 90vw;
  }
  .footer-logo img {
    width: 74px;
  }
  .footer-nav, .footer-contact {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
    min-height: 64px;
    gap: 8px;
    padding: 0 2vw;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    padding: 10px 18px;
    font-size: 1rem;
    margin-left: 4px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    max-width: 100vw;
    padding: 0 7px;
  }
  .content-wrapper {
    padding: 0 2px;
  }
  .card-grid, .testimonial-grid, .feature-grid, .stats-grid, .trip-listing, .review-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-item, .stat-item, .trip-item {
    min-width: unset;
    max-width: 100%;
  }
  .hero .content-wrapper {
    align-items: flex-start;
    gap: 14px;
    text-align: left;
  }
  .text-image-section, .text-section-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .section {
    margin-bottom: 40px;
    padding: 24px 6px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.17rem; }
  h3 { font-size: 1.07rem; }
  .hero {
    min-height: 180px;
    padding: 17px 0 27px;
    border-radius: 0 0 16px 16px;
  }
  .cta {
    padding: 12px 0;
    border-radius: 14px;
  }
}

/* ======================
   COOKIE BANNER
====================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #16407F;
  color: #fff;
  z-index: 180;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -3px 30px 0 rgba(22,64,127,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 24px 24px 20px 24px;
  gap: 24px;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 1rem;
  animation: slideBannerIn 0.38s cubic-bezier(.72,.02,.77,1.14);
}
@keyframes slideBannerIn {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 15.2px;
}
.cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  padding: 10px 18px;
  border-radius: 12px;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, transform 0.13s;
  box-shadow: 0 2px 8px 0 rgba(242,194,48,.09);
}
.cookie-btn.accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-btn.accept:hover {
  background: #FFE67C;
}
.cookie-btn.settings {
  background: var(--primary);
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-btn.settings:hover {
  background: #09224a;
  color: #ffe96c;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--primary);
  border: 2px solid #D62E1A;
  font-weight: 800;
}
.cookie-btn.reject:hover {
  background: #fce5e1;
  color: #B00000;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 15px 10px 14px 10px;
    font-size: 0.97rem;
  }
  .cookie-actions {
    gap: 7px;
  }
}

/* ======================
   COOKIE CONSENT MODAL
====================== */
.cookie-modal {
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #12244D79;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeModalIn 0.21s cubic-bezier(.72,.02,.77,1.14);
}
.cookie-modal.open { display: flex; }
@keyframes fadeModalIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 38px 0 rgba(22,64,127,0.19);
  padding: 36px 20px 24px 26px;
  max-width: 380px;
  min-width: 250px;
  width: 85vw;
  color: var(--primary);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 3;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0;
}
.cookie-toggle {
  appearance: none;
  width: 42px;
  height: 24px;
  border-radius: 12px;
  background: #E1EDFF;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-toggle:checked {
  background: #41e6d6;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 1px 5px 0 rgba(22,64,127,0.10);
  transition: left 0.15s;
}
.cookie-toggle:checked:before {
  left: 21px;
}
.cookie-category.essential label {
  color: #6d9e43;
  font-weight: 900;
}

/* ======================
   MISC
====================== */
.text-section em {
  color: #F2C230;
  font-style: italic;
}
.contact-details p,img{
  vertical-align: middle;
}
.contact-details strong {
  color: var(--secondary);
}
.contact-map {
  background: #F2C23022;
  padding: 9px 14px;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* ==============
   FORMS (placeholder)
=============== */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 12px;
  border: 1.5px solid #DEDEDE;
  padding: 10px 13px;
  margin-bottom: 15px;
  background: #FBFBFB;
  transition: border 0.15s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--secondary);
  background: #FFFDE9;
}

/* ==============
   ANIMATIONS
=============== */
.feature-item, .trip-item, .testimonial-card, .stat-item {
  /* playful bounce in */
  animation: fadeInUp 0.8s cubic-bezier(.65,.05,.38,1.19) both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(35px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}

/* ====================
   PRINT BASIC SUPPORT
==================== */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, .cta, nav, footer {display:none!important;}
  main, section, .container, .content-wrapper { background: white !important; box-shadow: none !important; }
  body { color: #212121; background: none !important; }
}
