/* 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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F5F6FA;
  color: #31425A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #31425A;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #FDBA7C;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #31425A;
  letter-spacing: 0.01em;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }
p, li, .price, span {
  font-size: 1rem;
  color: #485873;
  margin-bottom: 12px;
}
p:last-child, li:last-child { margin-bottom: 0; }
strong { color: #4B5C7D; }

/* COLORS (soft pastels + brand) */
:root {
  --vh-primary: #31425A;
  --vh-secondary: #FDBA7C;
  --vh-accent: #F5F6FA;
  --vh-pink: #FAD5D8;
  --vh-green: #B0E2D6;
  --vh-blue: #B8D9F8;
  --vh-yellow: #FDF6CC;
  --vh-peach: #FBEDE2;
  --vh-lilac: #E5DAF7;
}

body {
  background: linear-gradient(180deg, #F5F6FA 0%, #FBEDE2 100%);
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(140, 170, 210, 0.10);
  transition: box-shadow 0.3s;
}
.section:hover {
  box-shadow: 0 8px 40px 0 rgba(115, 155, 200, 0.13);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.text-section, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* NAVIGATION */
header {
  width: 100%;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 2px 18px 0 rgba(120,160,200,0.04);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  width: 100%;
}
nav ul {
  display: flex;
  gap: 18px;
  align-items: center;
}
nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--vh-primary);
  transition: background 0.15s, color 0.2s;
}
nav ul li a:hover, nav ul li a:focus {
  background: var(--vh-pink);
  color: var(--vh-secondary);
}
.logo img, .logo-footer img {
  height: 44px;
  width: auto;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
  background: linear-gradient(90deg, var(--vh-secondary) 50%, var(--vh-pink) 100%);
  color: var(--vh-primary);
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 28px;
  padding: 11px 36px;
  margin-left: 16px;
  box-shadow: 0 2px 8px 0 rgba(253,186,124,0.10);
  transition: background 0.18s, color 0.18s, transform 0.13s;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--vh-pink) 70%, var(--vh-lilac) 100%);
  color: #31425A;
  transform: translateY(-2px) scale(1.025);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--vh-secondary);
  color: var(--vh-primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(250, 180, 124, 0.11);
  transition: background 0.18s;
  z-index: 102;
}
.mobile-menu-toggle:focus { outline: 2px solid #FAD5D8; }
.mobile-menu-toggle:hover { background: #FAD5D8; }

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(250, 220, 205, 0.95);
  transform: translateX(100vw);
  transition: transform 0.36s cubic-bezier(.68,-0.25,.51,1.32);
  z-index: 300;
  box-shadow: -8px 0 32px 0 rgba(70, 80, 120, 0.09);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--vh-primary);
  font-size: 2.4rem;
  align-self: flex-end;
  padding: 28px 22px 12px 22px;
  cursor: pointer;
  transition: color 0.18s, background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--vh-secondary);
  background: var(--vh-lilac);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  margin-top: 16vh;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  background: none;
  color: var(--vh-primary);
  padding: 13px 17px;
  border-radius: 12px;
  width: 75%;
  text-align: center;
  transition: background 0.14s, color 0.17s, box-shadow 0.16s;
  box-shadow: 0 2px 8px 0 rgba(115, 125, 160, 0.05);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vh-yellow);
  color: var(--vh-secondary);
}
@media (max-width: 1050px) {
  nav ul { gap: 6px; }
  .cta-btn { padding: 9px 22px; margin-left: 9px; font-size: 1rem; }
  nav { padding: 13px 8px; }
}
@media (max-width: 900px) {
  nav ul {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  nav {
    justify-content: space-between;
    padding-right: 0px;
  }
}

/* =========================================
   FLEXBOX LAYOUTS & SPACING (MANDATORY)
   ========================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--vh-accent);
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(120,150,190,0.09);
  padding: 32px 20px;
  transition: box-shadow 0.23s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 30px 0 rgba(115, 125, 200, 0.16);
  transform: translateY(-3px) scale(1.03);
}
.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: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px 0 rgba(166,196,245,0.10);
  margin-bottom: 20px;
  margin-right: 0px;
  flex: 1 1 350px;
  min-width: 260px;
  max-width: 400px;
  transition: box-shadow 0.23s, transform 0.15s;
}
.testimonial-card p {
  margin-bottom: 8px;
  color: #2C3145;
  font-size: 1.04rem;
  font-style: italic;
}
.testimonial-card span {
  color: #685080;
  font-size: 0.98rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-list, .services-list, .eco-materials-list, .personalization-list, .differentiators-list, .product-list, .use-cases-list, .recipient-ideas {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.benefits-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.benefits-grid > div {
  flex: 1 1 210px;
  background: var(--vh-lilac);
  border-radius: 14px;
  padding: 13px 17px;
  color: var(--vh-primary);
  font-family: 'Montserrat', sans-serif;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: decimal inside;
  margin-top: 8px;
}

/* MOBILE FLEX LAYOUTS */
@media (max-width: 900px) {
  .testimonials { flex-direction: column; align-items: flex-start; }
  .card-container, .content-grid, .benefits-grid { flex-direction: column; }
}
@media (max-width: 800px) {
  .text-image-section { flex-direction: column; gap: 24px; }
  .card { padding: 24px 13px; }
  .section { padding: 24px 8px; }
  .testimonial-card { min-width: 0; }
  .card-container { gap: 12px; }
}
/* For mobile: stack nearly everything, larger tap targets */
@media (max-width: 600px) {
  .container { padding: 0 10px; }
  .section { margin-bottom: 36px; padding: 20px 3px; }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.037rem; }
  .cta-btn { font-size: 0.99rem; padding: 10px 22px; }
}

/* FEATURE ICONS and CARD IMAGES */
.feature-list img, .eco-materials-list img, .services-list img {
  width: 46px;
  height: 46px;
  margin-bottom: 3px;
  border-radius: 8px;
  background: var(--vh-yellow);
  box-shadow: 0 1px 5px 0 rgba(210,190,130,0.09);
}

/* PRICING LABELS */
.price, .pricing, .pricing-info {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--vh-secondary);
  font-weight: 600;
  background: var(--vh-lilac);
  display: inline-block;
  padding: 4px 13px;
  border-radius: 8px;
  font-size: 1.05rem;
  margin-top: 2px;
  margin-bottom: 4px;
}

/* BASIC TABLES */
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  border: 1px solid #FAD5D8;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.97rem;
}
th {
  background: var(--vh-accent);
  color: var(--vh-primary);
}

/* MODERN CARD DESIGN */
.card {
  border: 1px solid #FAD5D8;
  background: #FFFDFD;
  border-radius: 18px;
  box-shadow: 0 6px 24px 0 rgba(220,150,200,0.060);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 14px 38px 0 rgba(120, 140, 210, 0.13);
  transform: translateY(-3px) scale(1.022);
}

/* FAQ, MODALS, ETC. */
.modern-travel, .consultation {
  background: var(--vh-pink);
  padding: 14px 18px;
  border-radius: 10px;
  color: #51405f;
  font-size: 1rem;
  margin-top: 6px;
}
.certifications img {
  width: 66px;
  height: auto;
  margin-right: 15px;
}

/* FOOTER */
footer {
  background: #FFFBF7;
  border-top: 2px solid #FBEDE2;
  padding: 34px 0 14px 0;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 140px;
}
.footer-links a {
  color: #617199;
  font-size: 0.98rem;
  transition: color 0.18s;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--vh-secondary);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.97rem;
  color: #485875;
}
.social-icons {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 7px;
}
.social-icons img {
  width: 29px;
  height: 29px;
  border-radius: 8px;
  background: var(--vh-accent);
  padding: 3px;
  box-shadow: 0 0.5px 4px 0 rgba(160,185,220,0.10);
  transition: background 0.14s;
}
.social-icons img:hover {
  background: var(--vh-pink);
}
.logo-footer img { height: 40px; }

/* Footer Responsive */
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* FORMS (contact modals etc.) */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 7px;
  border: 1px solid #FAD5D8;
  background: #FBF8F7;
  padding: 12px 13px;
  margin-bottom: 13px;
  color: #313e57;
  transition: border-color 0.14s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--vh-secondary);
  box-shadow: 0 1px 2px 0 rgba(250,180,124,0.12);
}
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--vh-secondary);
  color: var(--vh-primary);
  border: none;
  border-radius: 20px;
  padding: 8px 26px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.13s, transform 0.13s;
  box-shadow: 0 2px 7px 0 rgba(253,186,124,0.08);
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: var(--vh-pink);
  color: var(--vh-primary);
  transform: scale(1.023);
}

/* Cookie Consent Banner Styles */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #FFF4ED;
  color: #40303A;
  border-top: 2px solid #FDBA7C;
  box-shadow: 0 -1px 24px 0 rgba(250,180,124,0.07);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 25px 21px 25px;
  z-index: 5000;
  animation: cookieUp 0.39s 1 cubic-bezier(.59,1.65,.36,1);
}
@keyframes cookieUp { 0% { transform: translateY(100%); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
.cookie-banner__text {
  font-size: 1rem;
  color: #4e334e;
  font-family: 'Open Sans', sans-serif;
  max-width: 70vw;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  background: var(--vh-secondary);
  color: var(--vh-primary);
  padding: 8px 19px;
  border-radius: 12px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-right: 0;
  transition: background 0.13s, color 0.15s, box-shadow 0.13s;
  box-shadow: 0 2px 5px 0 rgba(253,186,124,0.08);
  cursor: pointer;
}
.cookie-btn:hover, .cookie-btn:focus { background: #FAD5D8; color: #31425A; }
.cookie-settings-btn {
  background: var(--vh-pink);
  color: #48336e;
  border: 1px solid #FDBA7C;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #FDBA7C;
  color: var(--vh-primary);
}

/* COOKIE MODAL POPUP */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(31,24,53,0.24);
  z-index: 5010;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalBackIn 0.22s 1;
}
@keyframes modalBackIn { 0% { opacity: 0; } 100% { opacity: 1; } }
.cookie-modal {
  min-width: 330px;
  max-width: 98vw;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 10px 44px 0 rgba(180,160,180,0.18);
  padding: 32px 25px 22px 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modalPopupIn 0.25s 1 cubic-bezier(.61,1.45,.35,1);
}
@keyframes modalPopupIn { 0% { transform: scale(0.85); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.cookie-modal h2 {
  font-size: 1.27rem;
  margin-bottom: 7px;
  color: #544064;
}
.cookie-modal__category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-modal__category label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  color: #51405f;
  font-weight: 500;
}
.cookie-modal__toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #FAD5D8;
  border-radius: 20px;
  position: relative;
  outline: none;
  transition: background 0.2s;
  margin-right: 7px;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
}
.cookie-modal__toggle:checked {
  background: #FDBA7C;
}
.cookie-modal__toggle:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: white;
  border-radius: 50%;
  transition: left 0.19s;
}
.cookie-modal__toggle:checked:before {
  left: 20px;
}
.cookie-modal__toggle:disabled {
  background: #B8D9F8;
  opacity: 0.62;
}
.cookie-modal__desc {
  font-size: 0.99rem;
  color: #6a6297;
}
.cookie-modal__footer {
  margin-top: 15px;
  display: flex;
  gap: 13px;
}

/* SCROLLBAR */
body::-webkit-scrollbar {
  width: 11px;
}
body::-webkit-scrollbar-thumb {
  background: #FAD5D8;
  border-radius: 8px;
}
body::-webkit-scrollbar-track {
  background: #F5F6FA;
  border-radius: 11px;
}

/* MICRO INTERACTIONS */
.cta-btn, button, .btn, .cookie-btn {
  transition: background 0.16s, color 0.18s, transform 0.13s, box-shadow 0.17s;
}
.cta-btn:active, button:active, .btn:active, .cookie-btn:active {
  transform: scale(0.96);
}

/* TABLET and MOBILE TWEAKS */
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 20px 7px 20px 7px;
  }
  .cookie-banner__text {
    max-width: 99vw;
    font-size: 0.98rem;
  }
  .cookie-banner__actions { gap: 10px; }
  .cookie-modal { padding: 18px 7px 14px 7px; }
  .testimonial-card { min-width: 0; padding: 13px 10px; }
}

/* PRINT STYLES */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
}
