/* VOLT PHASE TRAVEL STYLE.CSS */
/* --- CSS RESET & NORMALIZATION --- */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body, html {
  width: 100%;
  font-family: "Open Sans", Arial, sans-serif;
  scroll-behavior: smooth;
  background: #F0EADF;
  color: #2B3557;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #217ACA;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FD5777;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
  padding-left: 0;
}
li {
  margin-bottom: 8px;
}
blockquote {
  border-left: 5px solid #FFD900;
  margin: 24px 0;
  padding: 12px 24px;
  background: #fffbe6;
  font-style: italic;
  color: #2B3557;
  border-radius: 16px;
}

/* --- VARIABLES --- */
:root {
  --color-primary: #2B3557;
  --color-secondary: #90BCD6;
  --color-accent: #F0EADF;
  --color-fun1: #FFD900;  /* Yellow for playful accent */
  --color-fun2: #FD5777;  /* Dynamic pink accent */
  --color-fun3: #7FFFD4;  /* Aqua for buttons/effects */
  --text-dark: #22243a;
  --text-light: #fff;
  --radius-xl: 36px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-lg: 0 6px 36px rgba(43,53,87,.18);
  --shadow-md: 0 2px 12px rgba(43,53,87,.12);
  --shadow-sm: 0 1px 4px rgba(43,53,87,.10);
  --transition: all 0.28s cubic-bezier(.55, .11, .37, 1.2);
}

/* --- GLOBAL TYPOGRAPHY (Playful Dynamic) --- */
body {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  background: var(--color-accent);
  color: var(--color-primary);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", "Open Sans", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--color-primary);
  margin-bottom: 20px;
  text-shadow: 0 4px 0 #FFD90026;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
  color: var(--color-fun2);
}

p {
  font-size: 1rem;
  margin-bottom: 18px;
}

.text-section h2, .text-section h3 {
  margin-top: 20px;
}
.text-section ul {
  margin-bottom: 20px;
}

/* --- LAYOUT CONTAINERS & SECTIONS --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}

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

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* --- HERO SECTIONS --- */
.hero {
  margin-bottom: 60px;
  padding: 60px 0 48px 0;
  background: linear-gradient(90deg, #FFD900 20%, #90BCD6 100%);
  position: relative;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  box-shadow: var(--shadow-lg);
  min-height: 330px;
  overflow:hidden;
  animation: heroBounce 2s 0.1s ease-in-out 1;
}
@keyframes heroBounce {
  0% {transform: translateY(-50px); opacity:0}
  60% {transform: translateY(12px); opacity:1}
  80% {transform: translateY(-5px);}
  100% {transform: translateY(0px);}
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--color-primary);
  text-shadow: 0 4px 0 rgba(253,87,119,0.12);
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.18rem;
}

/* --- MAIN LAYOUT FLEX CLASSES --- */
.features-grid, .team-list, .blog-articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position:relative;
  background:#fff;
  border-radius:var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom:20px;
  padding:28px 22px;
  min-width:240px;
  flex:1 1 240px;
  transition: var(--transition);
  cursor:pointer;
}
.card:hover {
  box-shadow: 0 8px 38px rgba(43,53,87,.20);
  transform: translateY(-6px) scale(1.025);
}

.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;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  border-left: 6px solid #FFD900;
  transition: box-shadow 0.22s, transform 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(253,87,119,0.12), var(--shadow-lg);
  transform: scale(1.03);
}
.testimonial-card blockquote {
  color: #202446;
  font-size: 1.05rem;
  margin: 0;
  background: none;
  border: none;
  padding: 0;
}
.testimonial-details {
  font-size:0.95em;
  color:#595151;
  font-style:normal;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

.blog-articles-list > div {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px 18px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 5px solid #90BCD6;
}
.blog-articles-list > div:hover {
  box-shadow: 0 6px 28px #7FFFD438, var(--shadow-lg);
  transform: scale(1.025);
}

.team-list > div {
  background: #F0EADF;
  border-radius: var(--radius-md);
  padding: 22px 18px;
  flex: 1 1 220px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  border-top: 5px solid #FD5777;
  text-align:center;
  position:relative;
}
.team-list > div:before {
  content:'';
  position:absolute;
  top:-20px; left:calc(50% - 20px);
  width:40px; height:40px;
  background:var(--color-fun1);
  border-radius:50%;
  z-index:1;
  filter: blur(2px);
  opacity:0.38;
  animation:bubblePop 2s infinite alternate;
}
@keyframes bubblePop {
  from {transform: scale(0.9);} to {transform: scale(1.16);}
}

/* --- COUNTRY TABS - Playful buttons --- */
.country-tabs {
  display: flex;
  flex-wrap: wrap;
  gap:16px;
  margin-bottom: 20px;
}
.country-tabs button {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 20px;
  padding: 10px 23px;
  cursor: pointer;
  background: var(--color-fun2);
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 2px 6px #ffd90036;
  outline: none;
}
.country-tabs button:hover,
.country-tabs button:focus {
  background: #FFD900;
  color: var(--color-fun2);
  transform: scale(1.08) rotate(-2deg);
}

/* --- CTA BUTTONS --- */
.cta-button,
.cta-button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: var(--color-fun2);
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  border: none;
  border-radius: 28px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 18px #fd577726;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
  position:relative;
  overflow:hidden;
}
.cta-button.primary {
  background: var(--color-primary);
  color:#FFD900;
  box-shadow: 0 6px 24px #2B355732;
}
.cta-button:hover, .cta-button:focus {
  color: #fff;
  background: #FFD900;
  box-shadow: 0 10px 30px var(--color-fun1),0 2px 12px #FFD90066;
  transform: scale(1.06) rotate(-1.5deg);
  letter-spacing: 0.09em;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  color:#FD5777;
  background: #90BCD6;
  box-shadow: 0 12px 34px #90bcd688;
}
.contact-cta {
  background: #90BCD6;
  border-radius: var(--radius-xl);
  margin-bottom: 60px;
  padding: 38px 20px 42px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  color: var(--color-primary);
}
.newsletter-cta {
  background: #FFD900;
  border-radius: var(--radius-xl);
  margin-bottom: 60px;
  padding: 44px 20px 40px 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  color: var(--color-primary);
}

/* --- MAIN NAVIGATION --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px #2B355718;
  padding: 0 0 0 0;
  position:relative;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 600;
  padding: 6px 10px;
  transition: color 0.18s, background 0.15s, border-radius 0.2s;
  border-radius: 18px;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #90BCD6;
  color:#fff;
  border-radius: 18px 28px 16px 22px;
  outline: 2px solid #FFD900;
  outline-offset: 2px;
}

header a img {
  height: 48px;
  width:auto;
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: #2B3557;
  color: #fff;
  padding-top: 24px;
  padding-bottom: 22px;
  position: relative;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
footer img {
  height: 54px;
  width: auto;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 12px 0 0 0;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 10px;
  transition: background 0.14s, color 0.16s;
}
.footer-nav a:hover,.footer-nav a:focus {
  background: #FFD900;
  color: #2B3557;
}
footer p {
  margin-top: 8px;
  font-size: 0.95rem;
  opacity: 0.88;
  text-align: center;
}

/* --- CONTACT INFO/FORM --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-md);
  margin: 24px auto 0 auto;
  width: 100%;
  max-width: 480px;
  align-items: flex-start;
  font-size: 1rem;
}
.contact-info img {
  width: 21px;
  height: 21px;
  margin-right: 10px;
  vertical-align: middle;
}
.contact-form {
  margin-bottom: 34px;
}
.thank-you-message {
  background: #FFD900;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px #FFD90018;
  font-weight: 600;
  color: #2B3557;
  margin: 18px auto 0 auto;
  text-align: center;
}

/* --- MAP PLACEHOLDER --- */
.map-placeholder {
  background: #90BCD6;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 18px;
  min-height: 80px;
  box-shadow: var(--shadow-md);
}

/* --- RESPONSIVE FLEX & MEDIA QUERIES --- */
@media (max-width: 1120px) {
  .container { max-width: 980px; }
  .hero {
    padding: 48px 0 30px 0;
  }
}
@media (max-width: 900px) {
  .main-nav { gap: 16px; }
}
@media (max-width: 768px) {
  h1{font-size: 1.54rem;}
  h2{font-size: 1.15rem;}
  .hero { padding: 28px 0 10px 0; }
  .main-nav { display: none; }
  .container { max-width: 98vw; padding-left:10px; padding-right: 10px; }
  .card-container, .features-grid, .team-list, .blog-articles-list, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .text-image-section { flex-direction: column; gap: 24px; }
  .testimonial-card { flex-direction: column; gap: 10px;}
  .newsletter-cta, .contact-cta {
    padding: 28px 10px 28px 10px;
    border-radius: var(--radius-md);
  }
  header .container { flex-direction: row; height: 64px;}
  .footer-nav { gap: 8px; flex-direction:column; align-items: center; }
  .contact-info { padding: 10px 4px; }
}
@media (max-width: 540px) {
  .container { padding-left: 4px; padding-right: 4px; }
  .card, .blog-articles-list > div, .team-list>div { min-width:unset; }
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: inline-block;
  background: #FFD900;
  color: #2B3557;
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  padding: 6px 18px;
  border-radius: 14px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 10px #ffd90036;
  transition: var(--transition);
  margin-left: 18px;
  z-index: 201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FD5777;
  color: #fff;
}
@media (min-width: 769px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none!important;}
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; 
  width: 100vw;
  height: 100vh;
  background: #FFD900;
  box-shadow: 0 2px 32px #2B3557cc;
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.64,-0.12,.22,1.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 32px;
  padding-left: 18px;
  padding-right: 20px;
  overflow-y:auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FD5777;
  color: #fff;
  border: none;
  font-size: 2.5rem;
  border-radius: 18px;
  position: absolute;
  top: 20px;
  right: 24px;
  padding: 0 15px;
  cursor: pointer;
  transition: background 0.22s;
  z-index: 402;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #2B3557;
  color:#FFD900;
}
.mobile-nav {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: flex-start;
  align-items: flex-start;
}
.mobile-nav a {
  color: #2B3557;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.19rem;
  font-weight: 700;
  background: transparent;
  border-radius: 14px;
  padding: 12px 20px 11px 4px;
  margin-bottom: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #90BCD6;
  color: #fff;
  outline: 2px solid #FD5777;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #FFD900;
  color: #2B3557;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 22px 20px 13px 20px;
  box-shadow: 0 -2px 32px #2b3557aa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 18px 18px 0 0;
  animation: bannerSlideUp 0.65s cubic-bezier(.55,.18,.44,1.15);
}
@keyframes bannerSlideUp {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1em;
  font-weight: 600;
  margin: 0 0 8px 0;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn{
  font-family: "Montserrat", Arial, sans-serif;
  border: none;
  border-radius: 13px;
  font-weight: 700;
  padding: 9px 22px;
  font-size: 1em;
  box-shadow: 0 2px 8px #fff3ec33;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0;
}
.cookie-accept{
  background: #2B3557;
  color: #FFD900;
}
.cookie-accept:hover{ background: #FD5777; color: #fff;}
.cookie-reject{
  background: #FD5777;
  color: #fff;
}
.cookie-reject:hover{ background:#FFD900; color:#2B3557;}
.cookie-settings{
  background: #90BCD6;
  color: #fff;
}
.cookie-settings:hover{ background: #2B3557; color: #FFD900;}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  background: rgba(43,53,87,0.68);
  align-items: center;
  justify-content: center;
}
.cookie-modal.active {
  display: flex;
  animation: fadeInModal 0.4s;
}
@keyframes fadeInModal {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 42px 32px 32px 32px;
  min-width: 340px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  position:relative;
  animation: modalPop .38s cubic-bezier(.77,-0.09,.26,1.2);
}
@keyframes modalPop {
  0% {transform:scale(0.78) translateY(28px);opacity: 0;}
  80% {transform:scale(1.06) translateY(-8px);}
  100% {transform:scale(1) translateY(0);opacity: 1;}
}
.cookie-modal-content h3 {
  font-size: 1.24rem;
  font-family: "Montserrat", Arial, sans-serif;
  margin-bottom: 12px;
}
.cookie-modal-content ul {
  margin: 10px 0 10px 20px;
}
.cookie-groups {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.cookie-group {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
  font-weight: 600;
}
.cookie-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #2B3557;
}
.cookie-group.label-essential input[type="checkbox"] {
  accent-color: #90BCD6;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 2.1rem;
  background: #F1F5FF;
  color: #2B3557;
  border: none;
  border-radius: 15px;
  padding: 0 10px;
  cursor:pointer;
  font-weight: 700;
  transition: background 0.22s,color 0.22s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FD5777;
  color: #fff;
}

/* --- MICRO-ANIMATIONS --- */
@keyframes btnWiggle {
  0% { transform: rotate(-2deg) scale(1.01);}
  20%{transform:rotate(2.3deg) scale(1.06);}
  40%{transform:rotate(-2.2deg) scale(.98);}
  60%{transform:rotate(1.7deg) scale(1.03);}
  80%{transform:rotate(-1.2deg) scale(1.08);}
  100% { transform: rotate(0deg) scale(1.01);}
}
.cta-button.primary:hover {
  animation: btnWiggle 0.41s linear both;
}

/* --- PLAYFUL DYNAMIC DECORATIVE SPARKLES --- */
.hero:after {
  content: '';
  position: absolute;
  right: 10vw; bottom: 16px;
  width: 86px; height: 86px;
  background: radial-gradient(#fffbe6 40%, #FFD900 80%, #fff0 100%);
  border-radius: 50%;
  filter: blur(4px);
  z-index: 2;
  opacity: 0.38;
  pointer-events: none;
  animation: sparklePulse 3.2s infinite alternate ease-in-out;
}
@keyframes sparklePulse { from { opacity:0.24;} to { opacity:0.48;} }

.features-grid > div {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 22px 16px 20px 20px;
  width: 100%;
  max-width: 320px;
  flex: 1 1 230px;
  min-width: 180px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s;
  margin-bottom: 12px;
}
.features-grid > div:hover {
  box-shadow: 0 8px 24px #FFD90026, var(--shadow-lg);
  transform: translateY(-4px) scale(1.03);
}
.features-grid img {
  height: 42px;
  width:auto;
  margin-bottom: 10px;
}
.features-grid h3 { font-size: 1.1rem; margin-bottom: 8px; color: #FD5777;}
.features-grid p { font-size: 1rem; }

/* --- MISC UTILITY --- */
.text-section { margin-bottom: 30px; }
.text-section ul, .text-section ol { margin-bottom: 16px; }
.text-image-section img { border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }

/* --- ACCESSIBILITY FOCUS STATES --- */
a:focus, button:focus {
  outline: 2.5px solid #FFD900;
  outline-offset: 2px;
}

/* --- ENSURE NO OVERLAPS --- */
.card, .card-container > *, .features-grid > *, .team-list > *, .testimonial-card, .content-wrapper > *, .footer-nav > * {
  margin-bottom: 20px;
}
@media (max-width: 490px) {
  .hero { border-radius: 0 0 var(--radius-md) var(--radius-md);} 
  .card, .features-grid > div, .team-list > div, .blog-articles-list > div{
    min-width:unset;
  }
  .testimonial-card { padding:12px 8px;}
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 10px; padding:14px 8px 11px 8px; font-size:0.99rem;}
  .cookie-modal-content{padding:22px 10px 16px 10px; min-width:unset;}
}

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