/* ----------------------------------- */
/* ------------- RESET --------------- */
/* ----------------------------------- */

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F9F8FD;
  color: #2E3E53;
  line-height: 1.6;
  font-size: 1rem;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
}
th {
  background: #d6e7ce;
  color: #2E3E53;
  font-size: 1.1rem;
  font-weight: bold;
}
tr {
  background: #fff;
}
tr:nth-child(even) {
  background: #F5F7FA;
}

/* ----------------------------------- */
/*        VARIABLES & BRAND COLOR      */
/* ----------------------------------- */
:root {
  --primary: #2E3E53;
  --secondary: #D6E7CE;
  --accent: #F5BB4B;
  --electric-purple: #9440ED;
  --electric-cyan: #15D3C5;
  --electric-pink: #FB3792;
  --white: #fff;
  --gray-light: #F8F8FA;
  --gray-dark: #404050;
}

/* ----------------------------------- */
/*        TYPOGRAPHY & HEADINGS        */
/* ----------------------------------- */
h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  line-height: 1.15;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 16px;
  text-shadow: 0 4px 16px var(--accent);
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
  color: var(--electric-purple);
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--primary);
}
h4 {
  font-size: 1rem;
  color: var(--electric-pink);
}
p, li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--gray-dark);
}
.subheadline {
  font-size: 1.1rem;
  color: var(--electric-cyan);
  margin-bottom: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
/* Typography scale helper */
.display {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
}

/* ----------------------------------- */
/*          LAYOUT & SPACING           */
/* ----------------------------------- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(244,154,63,0.075);
}
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--gray-light);
  border-radius: 18px;
  box-shadow: 0 2px 6px 0 rgba(81,1,255,0.14);
  padding: 24px 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  flex: 1 1 250px;
  min-width: 220px;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(255,46,198,0.14);
  transform: translateY(-5px) scale(1.015);
}
.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: var(--secondary);
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(44,52,102,0.10);
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list > div {
  flex: 1 1 220px;
  min-width: 200px;
  background: var(--gray-light);
  padding: 24px 18px;
  border-radius: 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  box-shadow: 0 2px 10px 0 rgba(117,197,255,0.075);
}
.service-list > div:hover {
  box-shadow: 0 8px 28px 0 rgba(245,59,146,0.18);
  background: #fcf3e1;
  transform: scale(1.03) translateY(-3px);
}

.package-options {
  margin-top: 32px;
  background: var(--electric-purple);
  color: var(--white);
  padding: 24px 20px;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(148,64,237,0.13);
}
.package-options h3 {
  color: var(--accent);
  margin-bottom: 16px;
}
.package-options ul li {
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.filter-options,
.legend {
  margin-top: 28px;
  background: var(--electric-cyan);
  color: var(--primary);
  border-radius: 13px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
}
.legend img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.map-placeholder {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-light);
  border-radius: 8px;
  padding: 14px 12px;
  margin-top: 10px;
}

.next-steps-info ul {
  list-style: disc inside;
  margin-left: 18px;
  color: var(--primary);
  margin-bottom: 14px;
}

/* ----------------------------------- */
/*        HERO & CTA SECTIONS          */
/* ----------------------------------- */
.hero {
  background: linear-gradient(90deg, var(--electric-pink) 0%, var(--electric-cyan) 100%);
  color: var(--white);
  border-radius: 0 0 36px 36px;
  margin-bottom: 60px;
  padding: 60px 20px 54px 20px;
  box-shadow: 0 8px 42px 0 rgba(250,106,207,0.12);
}
.hero h1, .hero h2, .hero h3, .hero p, .hero .subheadline {
  color: var(--white) !important;
  text-shadow: 0 2px 12px rgba(45,42,73,0.20);
}
.hero .cta-btn {
  background: var(--accent);
  color: var(--primary);
  margin-top: 24px;
  border-radius: 100px;
}
.cta {
  background: var(--electric-purple);
  color: var(--white);
  border-radius: 28px;
  box-shadow: 0 8px 36px 0 rgba(148,64,237,0.16);
  margin-bottom: 60px;
  padding-top: 44px;
  padding-bottom: 44px;
}
.cta h2, .cta p {
  color: var(--white);
}
.cta .cta-btn {
  background: var(--accent);
  color: var(--primary);
}

/* ----------------------------------- */
/*             FEATURES                */
/* ----------------------------------- */
.features ul, .features-list, .features-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: row;
  margin-top: 18px;
  margin-bottom: 10px;
}
.features ul li {
  background: var(--electric-cyan);
  color: var(--primary);
  display: flex;
  flex: 1 1 220px;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  padding: 18px 14px;
  font-weight: 600;
  font-size: 1.05rem;
}
.features ul li img {
  width: 28px;
  height: 28px;
}

/* ----------------------------------- */
/*           TESTIMONIALS              */
/* ----------------------------------- */
.testimonials {
  background: #f5f7fa;
  border-radius: 24px;
  box-shadow: 0 2px 14px 0 rgba(61,255,241,0.09);
  padding-top: 42px;
  padding-bottom: 42px;
}
.testimonial-card {
  margin-bottom: 28px;
  box-shadow: 0 2px 12px 0 rgba(22,60,142,0.08);
  background: var(--secondary);
  color: #202032;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 6px;
}
.testimonial-card .stars {
  color: var(--accent);
  font-size: 1rem;
  font-weight: bold;
  margin-left: 10px;
  letter-spacing: 0.06em;
}
.testimonial-card p {
  font-size: 0.98rem;
  color: var(--electric-purple);
  margin-bottom: 0;
}

/* ----------------------------------- */
/*          PRICING TABLES             */
/* ----------------------------------- */
.pricing table {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(117,197,255,0.13);
  margin-bottom: 18px;
}
.pricing th {
  background: var(--electric-cyan);
  color: var(--primary);
}
.pricing td {
  color: var(--gray-dark);
  font-size: 1rem;
}
.pricing tr:last-child td {
  border-bottom: none;
}

/* ----------------------------------- */
/*        SUCCESS / THANK YOU          */
/* ----------------------------------- */
.success {
  background: var(--secondary);
  border-radius: 24px;
  box-shadow: 0 2px 24px 0 rgba(245,187,75,.13);
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}
.success h1 {
  color: var(--electric-purple);
  margin-bottom: 16px;
}
.success-message {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 26px;
}

/* ----------------------------------- */
/*           NAVIGATION                */
/* ----------------------------------- */
header {
  background: var(--primary);
  padding: 0;
  min-height: 70px;
  position: relative;
  z-index: 31;
  box-shadow: 0 2px 14px 0 rgba(44,62,153,0.09);
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 16px 16px 0;
  flex-wrap: wrap;
  max-width: 1040px;
  margin: 0 auto;
}
header nav a {
  color: var(--white);
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 1.05rem;
  transition: color 0.16s, background 0.16s, box-shadow 0.22s;
}
header nav a.cta-btn {
  background: var(--accent);
  color: var(--primary);
  border-radius: 32px;
  margin-left: 20px;
  box-shadow: 0 2px 16px 0 rgba(245,187,75, 0.13);
  font-size: 1.08em;
  padding: 10px 20px;
  font-weight: bold;
  letter-spacing: 0.02em;
  transition: background 0.18s, box-shadow 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: var(--electric-cyan);
  color: var(--primary);
}
header nav a.cta-btn:hover {
  background: var(--electric-pink);
  color: var(--white);
  box-shadow: 0 6px 20px 0 rgba(251,55,146, 0.15);
}
header nav img {
  height: 40px;
  width: auto;
  margin-right: 20px;
  vertical-align: middle;
}

/* --------- MOBILE MENU ------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  font-size: 2.2rem;
  border-radius: 10px;
  padding: 4px 18px;
  margin: 10px 10px 10px auto;
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 51;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
}
.mobile-menu-toggle:hover {
  background: var(--electric-pink);
  color: var(--white);
  box-shadow: 0 4px 16px 0 rgba(251,55,146, 0.14);
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 102;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, var(--primary) 65%, var(--electric-purple));
  transition: transform 0.38s cubic-bezier(.77,0,.18,1);
  transform: translateX(-120vw);
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding-top: 60px;
  gap: 4vh;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 26px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 8px;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 16px 0 rgba(245,187,75,0.22);
  transition: background 0.18s, color 0.14s;
  z-index: 108;
}
.mobile-menu-close:hover {
  background: var(--electric-pink);
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
  margin-left: 54px;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 0.15s, color 0.15s;
  margin-right: 40px;
  margin-bottom: 12px;
}
.mobile-nav a:hover {
  background: var(--electric-cyan);
  color: var(--primary);
}

/* ----------- FOOTER --------------- */
footer {
  background: var(--primary);
  color: var(--secondary);
  text-align: center;
  padding: 32px 10px 26px 10px;
  border-radius: 30px 30px 0 0;
  margin-top: 50px;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
footer nav a {
  color: var(--accent);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.07em;
  transition: color 0.12s;
  padding: 2px 10px;
}
footer nav a:hover {
  color: var(--electric-pink);
}
/* ----------------------------------- */
/*             BUTTONS                 */
/* ----------------------------------- */
.cta-btn {
  border: none;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-weight: bold;
  padding: 14px 36px;
  border-radius: 70px;
  font-size: 1.17rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 8px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  box-shadow: 0 3px 18px 0 rgba(245,187,75,.13);
  cursor: pointer;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--electric-pink);
  color: var(--white);
  box-shadow: 0 6px 32px 0 rgba(251,55,146, 0.14);
  transform: translateY(-2px) scale(1.03);
}

/* Utility: visually-hidden (for accessiblity) */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ----------------------------------- */
/*         COOKIE CONSENT BANNER       */
/* ----------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--electric-purple);
  color: var(--white);
  padding: 22px 16px 18px 16px;
  box-shadow: 0 -3px 24px 0 rgba(148,64,237,0.19);
  z-index: 320;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  animation: bannerSlideIn 0.6s cubic-bezier(.54,.1,.18,1);
}
@keyframes bannerSlideIn {
  0% { transform: translateY(100%); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1.02rem;
}
.cookie-banner .cookie-btn {
  background: var(--accent);
  color: var(--primary);
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  padding: 9px 16px;
  font-weight: 700;
  margin-left: 10px;
  cursor: pointer;
  margin-bottom: 0;
  transition: background 0.15s, color 0.15s, transform 0.13s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--electric-pink);
  color: var(--white);
  transform: scale(1.06) translateY(-1px);
}

/* --------- COOKIE MODAL ----------*/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left:0; top:0; width:100vw; height:100vh;
  background: rgba(46,62,83,0.60);
  z-index: 350;
  justify-content: center;
  align-items: center;
  animation: modalFadeIn 0.42s linear;
}
@keyframes modalFadeIn {
  0% { opacity: 0; }
  100% { opacity:1; }
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  border-radius: 24px;
  box-shadow: 0 2px 48px 0 rgba(81,123,208,.21);
  padding: 34px 30px;
  min-width: 320px;
  max-width: 96vw;
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: modalPop 0.38s cubic-bezier(.53,.01,.32,1.08);
}
@keyframes modalPop {
  0% { transform: scale(0.75); opacity: 0; }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.42rem;
  margin-bottom: 6px;
  color: var(--electric-purple);
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-modal .category label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
}
.cookie-modal .category input[type="checkbox"]:checked + label {
  color: var(--electric-cyan);
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}
.cookie-modal .cookie-modal-btns .cookie-btn {
  font-size: 1rem;
  border-radius: 13px;
  background: var(--accent);
  color: var(--primary);
}
.cookie-modal .cookie-modal-btns .cookie-btn:hover {
  background: var(--electric-pink);
  color: var(--white);
}
.cookie-modal .cookie-close {
  position: absolute;
  right: 14px;
  top: 14px;
  background: var(--electric-purple);
  color: var(--white);
  border-radius: 8px;
  width: 34px; height: 34px;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 11px 0 rgba(148,64,237,0.14);
  transition: background 0.12s, color 0.1s;
}
.cookie-modal .cookie-close:hover {
  background: var(--accent);
  color: var(--primary);
}

.essential-label {
  color: var(--primary) !important;
  font-weight: 900 !important;
}

/* ----------------------------------- */
/*         ANIMATIONS / EFFECTS        */
/* ----------------------------------- */
a, button, .cta-btn, .mobile-nav a, .cookie-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
}
.section, .card, .testimonial-card, .success {
  animation: fadeIn 0.5s cubic-bezier(.51,0,.19,1.02);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------- */
/*         RESPONSIVE DESIGN           */
/* ----------------------------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
  }
  header nav {
    max-width: 100vw;
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .service-list > div, .features ul li, .card {
    flex: 1 1 280px;
    min-width: 180px;
  }
  .package-options {
    padding: 16px 8px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container, header nav {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section, section, .hero, .cta, .success {
    padding: 22px 8px;
    border-radius: 18px;
  }
  .content-wrapper {
    gap: 14px;
  }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  .subheadline { font-size: 1rem; }
  .service-list, .card-container, .features ul, .content-grid {
    gap: 14px;
  }
  .service-list, .card-container, .features ul, .content-grid {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .map-placeholder {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header nav {
    display: none;
  }
}
@media (max-width: 520px) {
  html { font-size: 14px; }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.08rem; }
  .cta-btn {
    padding: 11px 14px;
    font-size: 1rem;
  }
  .mobile-menu, .mobile-menu.active {
    padding-top: 30px;
    gap: 2vh;
  }
  .cookie-modal {
    padding: 22px 7px;
    width: 96vw;
    min-width: 90vw;
  }
}
@media (max-width: 400px) {
  .cookie-banner { flex-direction: column; gap: 9px; }
  .cookie-modal { padding: 9px 2px; font-size: 0.92rem; }
}

/* ---- PREVENT OVERLAPPING ---- */
.card, .service-list > div, .features ul li,
.section, .testimonial-card, .next-steps-info ul {
  margin-bottom: 20px;
}

/* ---- Z-INDEX LAYERING ---- */
header,
.mobile-menu,
.cookie-banner,
.cookie-modal-overlay,
.cookie-modal {
  z-index: 9999;
}

/* END OF CSS */
