:root {
  /* Travel-inspired color palette */
  --sky: #45aaf2;
  --forest: #20bf6b;
  --dune: #ffeaa7;
  --cliff: #636e72;
  --wave: #f6fafd;
  --sunset: #ff7675;
  --passport: #222f3e;
  --text-plain: #283142;
  --text-muted: #4a5a6a;
  --paper: #fff;
  --parchment: #fafbfc;

  --radius-journey: 18px;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background: var(--wave);
  color: var(--text-plain);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.64;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

a {
  color: var(--sky);
  text-decoration: none;
  transition: color .14s;
}
a:hover {
  color: var(--forest);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--passport);
  font-weight: 800;
  margin-top: 0;
}

h1 {
  font-size: 2.8rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 1.3rem;
  margin-top: 0;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2.2rem;
  margin-bottom: .6rem;
  color: var(--cliff);
}

/* --- Container utility --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2.2rem;
  box-sizing: border-box;
}

/* HEADER */
header {
  background: var(--paper);
  border-bottom: 1.5px solid var(--dune);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
}
.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--sky);
  letter-spacing: -0.03em;
  text-decoration: none;
  gap: 0.55em;
}
.logo svg {
  width: 36px;
  height: 36px;
  margin-right: 0.35em;
  vertical-align: middle;
}
.navbar {
  display: flex;
  column-gap: 2.1rem;
  align-items: center;
}
.navbar a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cliff);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color .14s;
  padding: 3px 0;
}
.navbar a:hover,
.navbar a.active {
  color: var(--sky);
}

/* Burger */
.burger {
  display: none;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-left: 1.2rem;
}
.burger span, .burger span:after, .burger span:before {
  display: block;
  width: 26px;
  height: 3.5px;
  background: var(--sky);
  border-radius: 4px;
  position: absolute;
  transition: .2s;
}
.burger span {
  position: relative;
}
.burger span:before {
  content: '';
  position: absolute;
  top: -9px;
}
.burger span:after {
  content: '';
  position: absolute;
  top: 9px;
}
.burger.active span {
  background: transparent;
}
.burger.active span:before {
  transform: rotate(45deg) translate(7px, 7px);
}
.burger.active span:after {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* HERO */
.hero-section {
  min-height: 62vh;
  background: linear-gradient(120deg, rgba(69,170,242,0.52) 0%,rgba(32,191,107,0.28) 100%), url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0;
}
.hero-section .container {
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  justify-content: center;
  align-items: flex-start;
}
.hero-title {
  color: var(--paper);
  text-shadow: 0 3px 24px #0008;
}
.hero-subtitle {
  color: var(--dune);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.7em;
  margin-top: .12em;
  text-shadow: 0 2px 20px #0006;
}
.cta-btn {
  display: inline-block;
  background: var(--forest);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.13rem;
  padding: 0.85em 2.4em;
  border-radius: var(--radius-journey);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px -8px var(--sky);
  letter-spacing: 0.05em;
  transition: background .16s, box-shadow .16s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--sky);
  box-shadow: 0 2px 22px -11px var(--forest);
  outline: none;
}

/* SERVICES */
.services-section {
  background: var(--parchment);
  padding: 4.2rem 0 3.1rem;
}
.services-grid {
  margin-top: 2.3rem;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2.3rem;
}
.service-card {
  background: var(--paper);
  border-radius: var(--radius-journey);
  box-shadow: 0 2px 20px -12px var(--passport);
  padding: 2.1rem 1.3rem 1.3rem 1.3rem;
  text-align: center;
  transition: box-shadow .14s, transform .12s;
  border: 1px solid #f0f1f2;
}
.service-card:hover {
  box-shadow: 0 10px 32px -12px var(--sky);
  transform: translateY(-5px) scale(1.03);
}
.service-card svg {
  width: 46px;
  height: 46px;
  margin-bottom: 1.2rem;
  color: var(--sky);
}
.service-card h3 {
  margin: 0.5em 0 0.5em 0;
  font-size: 1.22rem;
  color: var(--passport);
}
.service-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
}

/* SPLIT SECTION */
.split-section {
  background: var(--paper);
  padding: 5.2rem 0 5rem;
}
.split-flex {
  display: flex;
  align-items: flex-start;
  gap: 3.1rem;
  justify-content: center;
}
.split-img-wrapper {
  flex: 1;
}
.split-img {
  max-width: 100%;
  width: 100%;
  height: 375px;
  object-fit: cover;
  border-radius: var(--radius-journey);
  box-shadow: 0 12px 30px -8px var(--sky), 0 3px 24px -12px var(--cliff);
}
.split-content {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2em;
}
.split-content h2 {
  margin-bottom: 0.8em;
}
.split-section .cta-btn {
  align-self: flex-start;
  margin-top: 2rem;
  background: var(--sunset);
}
.split-section .cta-btn:hover {
  background: var(--forest);
  color: #fff;
}

/* BENEFITS */
.benefits-section {
  background: var(--parchment);
  padding: 3.2rem 0;
}
.benefits-grid {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2.2rem;
}
.benefit-item {
  background: var(--paper);
  border-radius: var(--radius-journey);
  box-shadow: 0 1px 16px -8px var(--wave);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.7em 1.2em;
  min-height: 150px;
  border: 1px solid #edecec;
}
.benefit-item .stat {
  font-size: 2.05rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--sky);
  margin-bottom: .4em;
}
.benefit-item .benefit-desc {
  color: var(--text-plain);
  font-size: 1.11rem;
  text-align: center;
}

/* INFO BLOCK */
.info-section {
  background: var(--paper);
  padding: 4.4rem 0 3.6rem;
}
.info-section .container {
  max-width: 860px;
}
.info-section p, .info-section li {
  color: var(--text-muted);
  font-size: 1.07rem;
}
.info-section ul,
.info-section ol {
  margin-top: .3em;
  margin-bottom: 1.3em;
  padding-left: 1.8em;
}
.info-section li {
  margin-bottom: .8em;
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--parchment);
  padding: 4.7rem 0 4rem;
}
.testimonials-grid {
  margin-top: 2.3rem;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2.2rem;
}
.testimonial-card {
  background: var(--paper);
  border-radius: var(--radius-journey);
  box-shadow: 0 2px 18px -10px var(--sky);
  padding: 2rem 1.1rem 1.1rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  position: relative;
  border: 1px solid #efefef;
}
.testimonial-text {
  font-size: 1.03rem;
  font-weight: 500;
  color: var(--text-plain);
  margin-bottom: 1.4em;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.7em;
  position: absolute;
  bottom: 1.1rem;
  left: 1.5rem;
  font-size: 0.96rem;
  color: var(--cliff);
}
.testimonial-name {
  font-weight: 700;
  color: var(--sunset);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

/* BLOG PREVIEW */
.blog-section {
  background: var(--paper);
  padding: 4.2rem 0 3.6rem;
}
.blog-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2.3rem;
}
.blog-card {
  background: var(--wave);
  border-radius: var(--radius-journey);
  box-shadow: 0 1px 10px -7px var(--sky);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0ecec;
  transition: transform .12s, box-shadow .13s;
}
.blog-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 9px 28px -8px var(--sky);
}
.blog-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.blog-card-content {
  padding: 1.4em 1.3em 1.1em 1.3em;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-title {
  font-size: 1.18rem;
  font-family: var(--font-heading);
  color: var(--cliff);
  margin-bottom: 0.5em;
  margin-top: 0;
}
.blog-card-meta {
  font-size: 0.98rem;
  color: var(--sky);
  font-weight: 600;
  margin-bottom: .7em;
}
.read-more {
  align-self: flex-start;
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--forest);
  padding-top: .8em;
  transition: color .13s;
}
.read-more:hover {
  color: var(--sunset);
}

/* FAQ ACCORDION */
.faq-section {
  background: var(--parchment);
  padding: 4.9rem 0 4.4rem;
}
.faq-list {
  margin-top: 2.1rem;
  max-width: 800px;
}
.faq-item {
  background: var(--paper);
  border-radius: var(--radius-journey);
  box-shadow: 0 1px 10px -7px var(--sky);
  margin-bottom: 1.16em;
  border: 1.5px solid #e8e8e8;
  overflow: hidden;
  transition: box-shadow .14s;
}
.faq-item.open {
  box-shadow: 0 7px 24px -7px var(--forest);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.13em;
  color: var(--passport);
  padding: 1.09em 1.1em 1.05em 1.2em;
  border: none;
  background: none;
  outline: none;
  transition: background .08s;
}
.faq-question:hover,
.faq-question:focus {
  background: var(--dune);
}
.faq-toggle-svg {
  width: 22px;
  height: 22px;
  margin-left: 1.2em;
  transition: transform .18s;
}
.faq-item.open .faq-toggle-svg {
  transform: rotate(90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.51,0,.28,1), padding .35s;
  background: var(--wave);
  color: var(--text-muted);
  padding: 0 1.3em;
}
.faq-item.open .faq-answer {
  padding: 1em 1.3em 1.3em 1.3em;
  max-height: 350px;
}

/* CONTACT SECTION */
.contact-section {
  background: var(--paper);
  padding: 4.6rem 0 4.1rem;
}
.contact-flex {
  display: flex;
  gap: 3.2rem;
}
.contact-form-wrapper {
  flex: 1.2;
}
#contact-form {
  background: var(--parchment);
  border-radius: var(--radius-journey);
  box-shadow: 0 2px 18px -8px var(--sky);
  padding: 2.6em 1.7em 1.5em 2em;
  display: flex;
  flex-direction: column;
  gap: 1.06em;
}
#contact-form label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cliff);
  margin-bottom: .37em;
}
#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 0.78em 1em;
  border: 1.5px solid #e4ecf2;
  border-radius: var(--radius-journey);
  font-size: 1.03rem;
  font-family: var(--font-body);
  background: #fff;
  margin-bottom: .98em;
  resize: none;
  transition: border .13s;
}
#contact-form input:focus,
#contact-form textarea:focus {
  border-color: var(--sky);
  outline: none;
}
#contact-form button[type="submit"] {
  margin-top: .5em;
  background: var(--forest);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.08rem;
  padding: 0.7em 2em;
  border: none;
  border-radius: var(--radius-journey);
  cursor: pointer;
  box-shadow: 0 2px 14px -7px var(--forest);
  transition: background .17s;
}
#contact-form button[type="submit"]:hover {
  background: var(--sky);
}
#form-success {
  display: none;
  color: var(--forest);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 0.8em;
  padding: 0.7em 0;
  background: var(--dune);
  border-radius: var(--radius-journey);
  text-align: center;
  border: 1.5px solid var(--forest);
}
.contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.7em;
  font-size: 1.07rem;
}
.contact-details .detail-row {
  display: flex;
  gap: 1em;
  align-items: flex-start;
}
.contact-details svg {
  color: var(--sky);
  flex-shrink: 0;
  width: 27px;
  height: 27px;
  margin-top: 2px;
}
.contact-label {
  color: var(--cliff);
  font-weight: 700;
  font-family: var(--font-heading);
  min-width: 88px;
  margin-right: 0.6em;
}
.contact-detail-value {
  color: var(--text-muted);
}
@media (max-width: 1100px) {
  .container { max-width: 98vw;}
  .split-flex, .contact-flex { flex-direction: column;}
  .split-img { height: 250px;}
  .testimonials-grid, .blog-cards, .benefits-grid, .services-grid { grid-template-columns: repeat(2,1fr);}
}
@media (max-width: 700px) {
  .container { padding: 0 1rem; }
  .header-inner { height: 60px; }
  h1 { font-size: 2rem;}
  h2 { font-size: 1.2rem;}
  .hero-section .container { padding-top:2rem; padding-bottom:2rem;}
  .split-img { height: 160px;}
  .testimonials-grid, .blog-cards, .benefits-grid, .services-grid { grid-template-columns: 1fr;}
  .faq-section, .testimonials-section, .contact-section, .services-section, .blog-section, .info-section, .benefits-section { padding-top: 2.4rem; padding-bottom: 2.1rem;}
}
/* MOBILE NAV */
@media (max-width: 830px) {
  .navbar {
    flex-direction: column;
    background: var(--paper);
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    z-index: 51;
    text-align: left;
    gap: 1.5em;
    padding: 2rem 2.2rem 2.4rem 2.2rem;
    box-shadow: 0 6px 18px -8px var(--sky);
    display: none;
    border-bottom-left-radius: var(--radius-journey);
    border-bottom-right-radius: var(--radius-journey);
  }
  .navbar.open { display: flex;}
  .burger { display: flex;}
}

/* FOOTER */
footer {
  background: var(--passport);
  color: #fff;
  padding: 0 0 0 0;
  font-size: 1rem;
  margin-top: 0;
  border-top: 4px solid var(--sky);
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 2.3rem;
  padding-bottom: 1.7rem;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 340px;
  gap: .7em;
}
.footer-logo {
  font-size: 2.05rem;
  font-family: var(--font-heading);
  color: var(--sky);
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 0.35em;
  margin-bottom: .3em;
  text-decoration: none;
}
.footer-logo svg { width: 30px; height: 30px;}
.footer-tagline {
  color: var(--dune);
  font-size: 1.07rem;
  margin-bottom: .4em;
}
.footer-contact {
  color: #b1eaf1;
  font-size: .97rem;
  margin-top: 0.1em;
  text-decoration: none;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .7em;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.32em;
  align-items: flex-end;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.04rem;
  text-decoration: none;
  opacity: 0.96;
  transition: opacity .13s;
}
.footer-nav a:hover { opacity: 1; color: var(--sky);}
.footer-divider {
  width: 100%;
  border-top: 1.5px solid #3bb0e0;
  margin-top: 0;
}
.footer-bottom {
  padding: 1.05em 0 .7em 0;
  text-align: center;
  color: #afe5ff;
  font-size: 0.95em;
  width: 100%;
  letter-spacing: 0.01em;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--passport);
  color: #fff;
  padding: 1em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  font-size: 1.05rem;
  box-shadow: 0 -3px 18px -6px var(--passport);
  gap: 1.85em;
}
.cookie-banner span {
  color: #fff;
}
.cookie-banner a {
  color: var(--sky);
  text-decoration: underline;
  font-weight: 600;
}
.cookie-banner button {
  margin-left: 1.2em;
  background: var(--forest);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  border-radius: var(--radius-journey);
  padding: 0.4em 1.5em;
  cursor: pointer;
  transition: background .14s;
}
.cookie-banner button:hover {
  background: var(--sky);
}
@media (max-width:600px){
  .cookie-banner { flex-direction: column; font-size: 1em; gap: 1em;}
}


/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Open+Sans:wght@400;500;700&display=swap');