/* === 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, main, 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F3F6F9;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #113255;
  font-size: 16px;
  line-height: 1.6;
}
article, aside, footer, header, main, nav, section {
  display: block;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s cubic-bezier(.67,.18,.36,.98);
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}
:focus {
  outline: 2px dashed #F8B133;
  outline-offset: 2px;
}

/* === VARIABLES (with fallbacks) === */
:root {
  --color-primary: #113255;
  --color-secondary: #F3F6F9;
  --color-accent: #F8B133;
  --color-accent-bright: #FFD168;
  --color-accent-dark: #D19022;
  --color-hover: #215DA6;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --radius-large: 24px;
  --radius: 14px;
  --shadow-fun: 0 6px 24px 0 rgba(17,50,85,0.13);
  --shadow-hover: 0 12px 20px rgba(248,177,51, 0.15);
  --transition: 0.28s cubic-bezier(.67,.18,.36,.98);
}

/* === GENERAL LAYOUT & TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.4rem; font-weight: 900; line-height: 1.2; }
h2 { font-size: 1.7rem; font-weight: 800; line-height: 1.25; }
h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.25; }
h4 { font-size: 1.1rem; font-weight: 600; }

@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
}

.subheadline {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 24px;
}

p, ul, ol, li, span, a, label, input, select {
  font-family: var(--font-body);
  font-size: 1rem;
}
strong {
  color: var(--color-primary);
  font-weight: 700;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (min-width: 768px) {
  .content-wrapper { gap: 36px; }
  .section {
    margin-bottom: 80px;
    padding: 60px 44px;
  }
}

/* Flex spacing containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- Fun playful card-style for various boxes --- */
.service-list, .pricing-table, .route-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.service-list > div, .pricing-table > div, .route-cards > div {
  background: #fff;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-fun);
  padding: 32px 26px 24px 26px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 7px solid var(--color-accent);
  position: relative;
  min-width: 220px;
  flex: 1 1 260px;
  z-index: 1;
}
.service-list > div:hover, .pricing-table > div:hover, .route-cards > div:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
}

@media (max-width: 900px) {
  .service-list, .pricing-table, .route-cards {
    flex-direction: column;
    gap: 18px;
  }
}

/* === BUTTONS & CTAs === */
.cta-primary, .cta-secondary, .mobile-nav a.cta-primary {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 2px 12px rgba(248,177,51,0.08), 0 1.5px 0 #ffd168 inset;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  border: 2px solid transparent;
  min-width: 180px;
  text-align: center;
}
.cta-primary {
  background: var(--color-accent);
  color: #113255;
  border-color: var(--color-accent);
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-accent-bright);
  color: #113255;
  transform: scale(1.06) rotate(-1deg);
  box-shadow: 0 4px 18px rgba(248,177,51, 0.20);
  border-color: var(--color-accent-dark);
  text-decoration: none;
}
.cta-secondary {
  background: #fff;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-accent);
  color: #113255;
  box-shadow: 0 6px 16px rgba(248,177,51,0.19);
  transform: scale(1.04) rotate(1deg);
}

/* --- Main & Footer NAVIGATION --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 13px 10px 13px 10px;
  border-radius: 0 0 var(--radius-large) var(--radius-large);
  box-shadow: 0 6px 24px 0 rgba(17,50,85,0.07);
}
.main-nav img {
  width: 46px;
  height: 46px;
  margin-right: 14px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  border-radius: var(--radius);
  padding: 7px 14px;
  position: relative;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s;
}
.main-nav a:not(.cta-primary):hover, .main-nav a:not(.cta-primary):focus {
  background: var(--color-secondary);
  color: var(--color-accent);
  text-decoration: none;
}
.main-nav .cta-primary {
  margin-left: 14px;
}

@media (max-width: 980px) {
  .main-nav {
    gap: 9px;
    padding: 11px 0px 11px 3px;
  }
  .main-nav a {
    font-size: 0.97rem;
    padding: 7px 6px 7px 10px;
  }
}
@media (max-width: 790px) {
  .main-nav {
    display: none;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #113255;
  font-size: 2rem;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  border: none;
  position: absolute;
  right: 22px;
  top: 16px;
  z-index: 1205;
  cursor: pointer;
  box-shadow: var(--shadow-fun);
  transition: background var(--transition), box-shadow var(--transition);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-accent-bright);
  box-shadow: var(--shadow-hover);
}
@media (min-width: 791px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFF;
  z-index: 2050;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(.67,.18,.36,.98);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  box-shadow: 0 12px 40px 0 rgba(17,50,85,.05);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-accent);
  color: #113255;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  border: none;
  margin: 23px 24px 0 0;
  cursor: pointer;
  transition: background var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-accent-bright);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0 0 36px;
  width: 90vw;
}
.mobile-nav a {
  padding: 16px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-primary);
  border-radius: var(--radius);
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-accent);
}
.mobile-nav .cta-primary {
  background: var(--color-accent);
  color: #113255;
  font-size: 1.15rem;
  margin-bottom: 7px;
}

/* --- HERO & SECTIONS --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  section {
    margin-bottom: 80px;
    padding: 62px 0px;
  }
}
section .container {
  background: none;
  box-shadow: none;
  border-radius: 0;
}

/* --- TESTIMONIAL CARDS --- */
.content-wrapper .testimonial-card,
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 3px 14px 0 rgba(17,50,85,0.09);
  color: #222c36;
  font-family: var(--font-body);
  font-size: 1.11rem;
  margin-bottom: 20px;
  min-width: 200px;
  max-width: 550px;
  z-index: 2;
  transition: transform 0.25s,var(--transition);
  border-left: 5px solid var(--color-accent);
}
.testimonial-card p {
  color: #222c36;
  font-family: var(--font-body);
  font-size: 1.09rem;
  margin-bottom: 9px;
  font-style: italic;
}
.testimonial-card span {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: 700;
}
.testimonial-card:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 10px 26px 0 rgba(248,177,51,0.15);
}
@media (min-width: 720px) {
  .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }
  .testimonial-card {
    flex: 1 1 320px;
    max-width: 38vw;
  }
}

/* --- FOOTER STYLES --- */
footer {
  background: #fff;
  border-top: 5px solid var(--color-accent);
  box-shadow: 0 -2px 18px rgba(17,50,85,0.06);
  margin-top: 72px;
  padding: 34px 0 12px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  justify-content: center;
  margin-bottom: 22px;
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary);
  border-radius: var(--radius);
  padding: 7px 10px;
  transition: background 0.2s, color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-accent);
}
.text-section {
  text-align: center;
  font-size: 0.98rem;
  color: #6c7a92;
  margin-top: 6px;
  font-family: var(--font-body);
}

/* --- PAGE UTILITY SECTIONS --- */
.pricing-table > div span, .service-list > div span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: bold;
  color: var(--color-accent);
  letter-spacing: 0.03em;
  margin-top: 12px;
}
.pricing-table > div a {
  margin-top: 16px;
}

/* --- LISTS / CHECKS / STEPS WITH FUN STYLE --- */
ul, ol {
  margin-bottom: 18px;
  margin-left: 18px;
}
ul li, ol li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 22px;
  color: #222c36;
}
ul li:before {
  content: '•';
  font-size: 1.32em;
  color: var(--color-accent);
  position: absolute;
  left: 0; top: 0.1em;
  line-height: 1;
  font-family: var(--font-display);
  font-weight: 900;
}
ol li:before {
  content: '';
}

/* --- FORMS & INPUTS (if needed later) --- */
input, textarea, select {
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--radius);
  border: 2px solid var(--color-secondary);
  background: #fff;
  margin-bottom: 14px;
  transition: border var(--transition);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
}

/* --- TYPING EFFECT ANIMATION FOR HERO HEADERS (fun/playful) --- */
@keyframes playful-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-8px) scale(1.06); }
  60% { transform: translateY(4px) scale(0.94); }
}
.hero-title, h1 {
  animation: playful-bounce 1.2s cubic-bezier(.58,.12,.57,.98) 1;
}

/* --- BUTTON MICROINTERACTIONS --- */
.cta-primary, .cta-secondary {
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition), color var(--transition);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 980px) {
  .container {
    max-width: 94vw;
    padding: 0 12px;
  }
  .service-list > div, .pricing-table > div, .route-cards > div {
    min-width: 60vw;
    padding: 22px 16px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column !important;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 19px;
  }
  .service-list, .pricing-table, .route-cards {
    flex-direction: column;
    gap: 15px;
  }
  .main-nav {
    display: none;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 99vw;
  }
  section, .section {
    padding: 24px 0 16px 0;
    margin-bottom: 40px;
  }
}
@media (max-width:420px) {
  .service-list > div, .pricing-table > div, .route-cards > div {
    min-width: 90vw;
    padding: 15px 7px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 5000;
  background: #fffbe9;
  box-shadow: 0 -2px 24px rgba(17,50,85,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 22px 10px 14px;
  font-size: 1rem;
  color: #113255;
  font-family: var(--font-body);
  border-top: 2px solid var(--color-accent);
  animation: popup-up 0.7s cubic-bezier(.54,.07,.59,1.02);
}
@keyframes popup-up {
  0% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cookie-banner .cta-primary,
.cookie-banner .cta-secondary {
  min-width: 140px;
  font-size: 0.97rem;
  padding: 10px 20px;
}

.cookie-banner .cta-reject {
  background: #fff;
  color: #E6334C;
  border: 2px solid #E6334C;
  border-radius: 9999px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: bold;
  cursor: pointer;
  margin: 0 0.7em 0 0;
  transition: background 0.2s, border 0.2s, color 0.2s;
}
.cookie-banner .cta-reject:hover, .cookie-banner .cta-reject:focus {
  background: #FFE7EE;
  color: #A81B36;
  border-color: #A81B36;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 99999;
  background: rgba(17,50,85,0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBg 0.35s;
}
@keyframes fadeInBg {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius-large);
  padding: 28px 24px 16px 24px;
  box-shadow: 0 8px 40px rgba(17,50,85,0.15);
  animation: popup-up 0.45s cubic-bezier(.54,.07,.59,1.02);
  max-width: 360px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 21px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 17px;
  background: var(--color-accent-bright);
  color: #113255;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  cursor: pointer;
  border: none;
  transition: background 0.14s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus { background: var(--color-accent); }
.cookie-modal-content h2 {
  font-size: 1.23rem;
  margin-bottom: 2px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 7px;
}
.cookie-category-label {
  font-family: var(--font-display);
  font-size: 1.04em;
  color: var(--color-accent);
  font-weight: 700;
}
.cookie-category input[type="checkbox"] {
  width: 19px; height: 19px;
  accent-color: var(--color-accent);
  margin-top: 3px;
}
.cookie-category input[disabled] { opacity: 0.6; }

.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 17px;
}
.cookie-modal-actions button {
  min-width: 110px;
  padding: 9px 17px;
  font-family: var(--font-display);
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal-actions .cta-primary { background: var(--color-accent); color: #113255; }
.cookie-modal-actions .cta-secondary { border: 2px solid var(--color-accent); background: #fff; color: var(--color-accent); }
.cookie-modal-actions .cta-primary:hover, .cookie-modal-actions .cta-primary:focus { background: var(--color-accent-bright); }
.cookie-modal-actions .cta-secondary:hover, .cookie-modal-actions .cta-secondary:focus { background: var(--color-accent-bright); color: #113255; border-color: var(--color-accent-bright); }

/* --- PLAYFUL DOT/BUBBLE DECORATIVE ELEMENTS --- */
.section:before {
  content: '';
  display: block;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-accent-bright);
  position: absolute;
  left: -16px;
  top: 10px;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
  animation: funpop 2.6s infinite linear alternate-reverse;
}
@keyframes funpop {
  0% { transform: scale(1) translateY(0); opacity: .29; }
  50% { transform: scale(1.38) translateY(-12px); opacity: .46; }
  100% { transform: scale(1.08) translateY(8px); opacity: .34;}
}
@media (max-width: 600px) { .section:before { display: none; } }

/* --- SEPARATOR LINES (for playful look) --- */
.separator {
  width: 100px;
  height: 6px;
  background: linear-gradient(90deg, #F8B133 52%, #FFD168 88%);
  border-radius: 7px;
  margin: 18px auto 30px auto;
  display: block;
}

/* --------- FUN TYPOGRAPHY (DISPLAY) --------- */
@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), url('https://fonts.googleapis.com/css?family=Montserrat:400,600,800,900&display=swap');
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans'), url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');
  font-display: swap;
}

/* --- MICROINTERACTIVE ACCENT for Fun Look --- */
h1, h2, h3, h4, .cta-primary, .cta-secondary, .main-nav a, .footer-nav a {
  letter-spacing: .03em;
  transition: color 0.16s, background 0.14s;
}

/* --- VISUAL HIERARCHY: whitespace --- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  section, .section {
    padding: 60px 44px;
    margin-bottom: 80px;
  }
}
.main-nav, .footer-nav {
  margin-left: auto;
  margin-right: auto;
}

/* === SCROLLBAR (BRANDY STYLE) === */
body::-webkit-scrollbar {
  width: 11px;
  background: #f4f6f8;
}
body::-webkit-scrollbar-thumb {
  background: #F8B133;
  border-radius: 8px;
  border: 3px solid #f4f6f8;
}

/* === HIGHLIGHT --- */
::-moz-selection {
  background: #F8B133;
  color: #fff;
}
::selection {
  background: #F8B133;
  color: #fff;
}

/* ========== END ========== */
