/* --- 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,
menu, 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

body {
  background: #FBF9F6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #2E3950;
  min-height: 100vh;
  line-height: 1.56;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --primary: #154273;
  --secondary: #4EAB7E;
  --accent: #F7F6EE;
  --pastel-blue: #CDF0FF;
  --pastel-green: #D9F5ED;
  --pastel-peach: #FFE2D1;
  --pastel-yellow: #FFF9C1;
  --pastel-lavender: #E6E5FB;
  --white: #fff;
  --grey-light: #F3F4F8;
  --border-radius: 20px;
  --shadow-card: 0 6px 18px 0 rgba(36,64,99,0.06);
  --shadow-subtle: 0 2px 8px 0 rgba(20,50,80,0.05);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--secondary);
}

strong, b {
  font-weight: bold;
  color: var(--primary);
}
ul, ol { margin-left: 24px; }
li { margin-bottom: 8px; }

/* --- TYPOGRAPHY SCALE --- */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: var(--primary);
  letter-spacing: -0.01em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--primary);
  letter-spacing: -0.02em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: #2E3950;
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #2E3950;
}
p {
  color: #36425b;
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

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

@media (max-width: 1024px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 36px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 22px 0;
    margin-bottom: 28px;
  }
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: linear-gradient(90deg, #F7F6EE 40%, #E6E5FB 100%);
  box-shadow: 0 2px 6px 0 rgba(25,50,75,0.05);
  position: relative;
  z-index: 10;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 32px;
}
.logo img {
  height: 44px;
  transition: transform 0.2s;
}
.logo:hover img {
  transform: scale(1.04) rotate(-2deg);
}

nav.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  padding: 7px 3px;
  border-radius: 6px;
  transition: color 0.18s, background 0.22s;
  position: relative;
}
nav.main-nav a:hover, nav.main-nav a.active {
  background: var(--pastel-blue);
  color: var(--secondary);
}

.btn-primary {
  font-family: var(--font-display);
  display: inline-block;
  padding: 12px 32px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 36px;
  font-weight: 700;
  font-size: 1.09em;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: background 0.23s, transform 0.13s, box-shadow 0.21s;
  outline: none;
  margin-left: 12px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 8px 24px 0 rgba(70, 180, 144, 0.13);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--white);
  font-size: 2.2rem;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.22s, transform 0.17s;
  z-index: 45;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.09);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff8f3;
  box-shadow: 0 6px 24px 0 rgba(90,120,135,0.15);
  width: 100vw;
  height: 100vh;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.65,.05,.36,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--pastel-yellow);
  color: var(--primary);
  border: none;
  font-size: 2rem;
  margin: 24px 0 0 24px;
  border-radius: 16px;
  width: 48px;
  height: 48px;
  align-self: flex-start;
  cursor: pointer;
  transition: background 0.21s, color 0.18s, transform 0.1s;
  z-index: 1000;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--accent);
  transform: scale(1.1);
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px 0 0 0;
  width: 100%;
  align-items: flex-start;
  padding-left: 40px;
}
.mobile-menu nav.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: var(--primary);
  padding: 12px 0;
  background: transparent;
  border-radius: 10px;
  width: 97%;
  transition: color 0.21s, background 0.19s;
}
.mobile-menu nav.mobile-nav a:hover, .mobile-menu nav.mobile-nav a:focus {
  background: var(--pastel-blue);
  color: var(--secondary);
}

@media (max-width: 1020px) {
  nav.main-nav,
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  .mobile-menu nav.mobile-nav {
    padding-left: 18px;
  }
  .mobile-menu-close {
    margin: 18px 0 0 14px;
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }
}

/* --- FOOTER --- */
footer {
  background: linear-gradient(80deg, #D9F5ED 28%, #F7F6EE 80%);
  padding: 38px 0 18px 0;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -3px 12px 0 rgba(110,170,180, 0.06);
  font-size: 0.97rem;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
footer nav {
  display: flex;
  gap: 28px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
footer nav a {
  color: var(--primary);
  opacity: .78;
  padding: 3px 4px;
  border-radius: 6px;
  font-weight: 500;
  font-family: var(--font-display);
  transition: opacity 0.16s, background 0.21s, color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--pastel-peach);
  opacity: 1;
  color: var(--secondary);
}
.brand-footer {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0.95;
}
.brand-footer img {
  height: 30px;
  width: auto;
}
.brand-footer span {
  font-size: .98rem;
  color: #445977;
}

/* --- CONTENT STRUCTURE, CARDS, & FLEX PATTERNS --- */
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
  max-width: 700px;
}
@media (max-width: 768px) {
  .text-section {
    align-items: flex-start;
    margin-bottom: 22px;
  }
}

.content-wrapper,
.content-grid { /* Shared class (used as content-wrapper or grid) */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.content-wrapper ul, .content-wrapper ol {
  margin: 0 0 0 10px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.card {
  background: var(--white);
  box-shadow: var(--shadow-card);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.23s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 14px 40px 0 rgba(122,176,232,0.11);
  transform: translateY(-3px) scale(1.012);
}

.service-card {
  background: linear-gradient(110deg, #E6E5FB 60%, #FFF9C1 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-subtle);
  padding: 28px 28px 22px 28px;
  min-width: 250px;
  flex: 1 1 260px;
  max-width: 335px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.13s, background 0.21s;
}
.service-card img {
  height: 42px;
  width: 42px;
  margin-bottom: 7px;
  background: var(--pastel-blue);
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(36,64,99,0.055);
  padding: 5px;
}
.service-card h3 {
  font-size: 1.11rem;
}
.service-card span {
  margin-top: 3px;
  font-size: .99rem;
  color: var(--secondary);
  font-weight: 700;
  font-family: var(--font-display);
}
.service-card:hover,
.service-card:focus {
  background: linear-gradient(90deg, #CDF0FF 79%, #D9F5ED 100%);
  box-shadow: 0 14px 40px 0 rgba(122,176,232,0.16);
  transform: scale(1.030) translateY(-4px);
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px 0 rgba(180, 174, 242, 0.11);
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 450px;
  transition: box-shadow 0.21s, transform 0.13s, background 0.19s;
  border-left: 5px solid var(--secondary);
}
.testimonial-card p {
  color: #222A39;
  font-size: 1.08rem;
  margin-bottom: 0;
  font-family: var(--font-display);
}
.testimonial-card span {
  color: #666D80;
  font-size: .98rem;
  font-style: italic;
  letter-spacing: .01em;
}
.testimonial-card:hover {
  background: var(--pastel-lavender);
  box-shadow: 0 14px 38px 0 rgba(145, 176, 236, 0.13);
  transform: scale(1.021);
}

/* --- FEATURE LIST ITEM --- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FLEX PATTERNS --- */
.section > .container {
  gap: 0;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.content-grid.grid {
  gap: 24px;
  justify-content: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .content-grid, .card-container, .content-wrapper, .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch !important;
  }
  .service-card, .testimonial-card {
    max-width: 100%;
  }
}

/* --- DEAL HIGHLIGHTS, GROUP SERVICE DESCRIPTION, EXCLUSIVE FEATURES --- */
.deal-highlights, .group-services-descriptions, .exclusive-features {
  background: linear-gradient(100deg, #D9F5ED 70%, #FFF9C1 100%);
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(45,140,110,0.07);
  padding: 18px 20px;
  margin: 30px 0 10px 0;
}
.deal-highlights h3, .group-services-descriptions h3, .exclusive-features h3 {
  font-size: 1.08rem;
  margin-bottom: 7px;
}
.deal-highlights ul,
.group-services-descriptions ul,
.exclusive-features ul {
  margin-left: 18px;
  margin-bottom: 0;
}
.deal-highlights li, .group-services-descriptions li, .exclusive-features li {
  color: #26507C;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: .99rem;
}

/* --- CONTACT PAGE, THANK-YOU PAGE, LEGALS --- */
.contact-details {
  background: var(--pastel-blue);
  padding: 22px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 16px 0 rgba(60,128,150,0.06);
  margin-bottom: 18px;
  min-width: 220px;
}
.contact-details p {
  margin-bottom: 10px;
  font-size: 1.02rem;
  color: #234077;
}
.contact-details a {
  color: var(--secondary);
  font-weight: 500;
  text-decoration: underline dotted;
}

/* --- BUTTONS --- */
button, input[type="button"], input[type="submit"] {
  font-family: var(--font-display);
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 30px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  transition: background 0.19s, transform 0.11s, color 0.16s, box-shadow 0.17s;
}
button:hover, button:focus, .btn-primary:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-1px) scale(1.045);
  box-shadow: 0 6px 20px 0 rgba(100,220,172,0.11);
}

/* --- FORMS (if any) --- */
input, textarea {
  border-radius: 10px;
  border: 1px solid #e3e5f1;
  background: #fff;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #212c39;
  margin-bottom: 16px;
  transition: border 0.19s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #FFE2D1 70%, #CDF0FF 100%);
  box-shadow: 0 -4px 30px 0 rgba(60,120,132,0.12);
  padding: 24px 10vw 16px 10vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 10310;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  font-size: 1.03em;
  min-height: 54px;
  opacity: 1;
  transition: transform 0.32s, opacity 0.2s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner p {
  margin-bottom: 0;
  color: #1a263d;
  font-size: 1em;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button,
.cookie-banner .btn-primary {
  border-radius: 26px;
  font-size: 1em;
  padding: 9px 23px;
  font-weight: 600;
  min-width: 122px;
  margin-left: 0;
}
.cookie-banner .btn-accept {
  background: var(--secondary);
  color: var(--white);
}
.cookie-banner .btn-accept:hover {
  background: var(--primary);
  color: var(--white);
}
.cookie-banner .btn-reject {
  background: #fad4d6;
  color: #1a263d;
  border: 1px solid #f8adad;
}
.cookie-banner .btn-reject:hover {
  background: #f8adad;
  color: #fff;
}
.cookie-banner .btn-settings {
  background: var(--pastel-lavender);
  color: var(--primary);
  border: 1px solid var(--secondary);
}
.cookie-banner .btn-settings:hover {
  background: var(--primary);
  color: var(--white);
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 14px 12px 14px;
    gap: 14px;
  }
  .cookie-banner .cookie-actions {
    gap: 9px;
    width: 100%;
    flex-wrap: wrap;
  }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(87,94,147,0.17);
  z-index: 10350;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.23s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #FFF9C1;
  border-radius: 22px;
  box-shadow: 0 22px 80px 0 rgba(80,130,190,0.18);
  padding: 38px 40px 32px 40px;
  min-width: 320px;
  max-width: 91vw;
  max-height: 84vh;
  overflow-y: auto;
  font-size: 1.06em;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  background: transparent;
  color: var(--primary);
  border: none;
  font-size: 1.65rem;
  cursor: pointer;
  border-radius: 50%;
  width: 39px;
  height: 39px;
  transition: background 0.13s, color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--secondary);
  color: #fff;
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.32rem;
  font-family: var(--font-display);
  margin-bottom: 7px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pastel-blue);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 1.01em;
  font-family: var(--font-body);
}
.cookie-category.essential {
  background: var(--pastel-peach);
  color: #000d;
  opacity: 1;
  font-weight: 600;
}
.cookie-category label {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
  border-radius: 4px;
  accent-color: var(--primary);
  border: 2px solid var(--secondary);
  margin-right: 8px;
  margin-top: 0;
}
.cookie-modal-actions {
  display: flex;
  gap: 19px;
  margin-top: 12px;
}

/* --- ANIMATIONS --- */
.card,
.service-card,
.testimonial-card,
.btn-primary,
.button,
.mobile-menu,
.cookie-banner,
.cookie-modal-content {
  transition:
    box-shadow 0.18s cubic-bezier(.26,.79,.27,1.21),
    background 0.18s cubic-bezier(.28,.75,.34,1.09),
    color 0.16s,
    transform 0.16s;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1200px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 1000px) {
  .service-card, .testimonial-card {
    flex-basis: 99%;
    min-width: 99%;
    max-width: 99%;
  }
}
@media (max-width: 700px) {
  h1, .h1 { font-size: 2.01rem; }
  h2, .h2 { font-size: 1.44rem; }
  .container { padding-left: 5px; padding-right: 5px; }
}
@media (max-width: 400px) {
  .cookie-modal-content {
    padding: 14px 5px 8px 8px;
    min-width: 100vw;
    max-width: 100vw;
  }
}

/* --- Z-INDEXS --- */
.mobile-menu { z-index: 1200; }
.cookie-banner { z-index: 10310; }
.cookie-modal { z-index: 10350; }

/* --- UTILITY CLASSES --- */
.mt-1 { margin-top: 7px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-1 { margin-bottom: 12px !important; }
.mb-2 { margin-bottom: 26px !important; }

/* --- END --- */
