/* Vivid Hollow Arredi - Vibrant Energetic Style CSS */
/*
  MAIN COLOR PALETTE (VIBRANT ENERGETIC BRAND EXTENSION)
    Primary:      #2B3A42
    Secondary:    #F4B942
    Accent:       #F7F5F3
    Accent2/Elec: #1DDBF7 (electric cyan)
    Magenta:      #F85670 (vibrant magenta)
    Lime:         #9FFF56 (electric lime)
    Dark:         #181B22
    Text on Accent: #231F20
*/

/*
  --------------- RESET AND NORMALIZE -------------------
*/
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F7F5F3;
  color: #231F20;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 1.5em;
}
a {
  color: #1DDBF7;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #F85670;
  text-decoration: underline;
  outline: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
  background: none;
}

/*
  --------------- TYPOGRAPHY -------------------
*/

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #2B3A42;
  margin-bottom: 16px;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}
p, li, span, em, strong {
  font-size: 1.06rem;
  color: #231F20;
}
strong {
  font-weight: 700;
  color: #F85670;
}
em {
  font-style: italic;
}
.text-section ul,
.text-section ol {
  margin-bottom: 16px;
}
.text-section ul li,
.text-section ol li {
  margin-bottom: 8px;
}

/*
  --------------- CONTAINERS / LAYOUT SPACING -------------------
*/
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F7F5F3;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 270px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px 0 rgba(44, 58, 105, 0.13), 0 1.5px 6px 0 rgba(44, 58, 105, 0.12);
  padding: 24px 20px;
  transition: box-shadow 0.22s, transform 0.18s;
  display: flex;
  flex-direction: column;
  min-width: 250px;
}
.card:hover {
  box-shadow: 0 8px 36px -2px #2B3A4255, 0 2.5px 15px 0 #F4B94244;
  transform: translateY(-5px) scale(1.017);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.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;
  margin-bottom: 20px;
}

/*
   ---------------- FEATURE LISTS & FLEX ITEMS ----------------
*/
.feature-grid,
.service-cards,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 24px 0 0 0;
  padding: 0;
}
.feature-grid li,
.service-cards li,
.service-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 20px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  box-shadow: 0 2px 12px #F4B94218;
  font-weight: 600;
  color: #2B3A42;
  gap: 8px;
  margin-bottom: 12px;
  transition: background 0.18s, box-shadow 0.18s;
}
.feature-grid li:hover,
.service-cards li:hover,
.service-list li:hover {
  background: #F7F5F3;
  box-shadow: 0 5px 24px #F8567021;
  color: #181B22;
}
.feature-grid img, .service-cards img, .service-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 2px;
  filter: drop-shadow(0 2px 2px #FFA60477);
}
.service-price {
  color: #1DDBF7;
  font-weight: 700;
  margin-left: 5px;
  letter-spacing: 0.01em;
  font-size: 1.1em;
}

/*
   ---------------- TESTIMONIALS AND REVIEW CARDS --------------
*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 #1DDBF733;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  border-left: 6px solid #F4B942;
  max-width: 680px;
  position: relative;
}
.testimonial-card p {
  color: #231F20;
  font-size: 1rem;
  font-style: italic;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}
.testimonial-card span {
  color: #2B3A42;
  font-weight: 700;
  font-size: 0.97rem;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px -4px #2B3A4222, 0 4px 18px #F8567012;
  transform: scale(1.018);
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 1.12em;
  color: #2B3A42;
  font-weight: 700;
}
.star-rating img {
  width: 26px;
  height: 26px;
  margin-right: 3px;
  filter: drop-shadow(0 0 4px #F4B94288);
}
.feedback-snippet {
  display: block;
  background: #1DDBF7;
  color: #2B3A42;
  padding: 10px 18px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 0.97em;
  margin-bottom: 16px;
  margin-top: 8px;
}

/*
  --------------- CALL TO ACTION & BUTTONS -------------------
*/
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Quicksand', 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1.14rem;
  padding: 13px 32px;
  border-radius: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 3px 20px -5px #1DDBF73a;
  text-transform: uppercase;
  margin: 14px 0;
  transition: background 0.20s, color 0.20s, box-shadow 0.20s, transform 0.11s;
  border: none;
  cursor: pointer;
  outline: none;
}
.cta-primary {
  background: #2B3A42;
  color: #fff;
  border: 2.5px solid #1DDBF7;
}
.cta-primary:hover, .cta-primary:focus {
  background: #1DDBF7;
  color: #181B22;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 0 0 3px #F8567040;
}
.cta-secondary {
  background: #F4B942;
  color: #2B3A42;
  border: 2px solid #2B3A42;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #F85670;
  color: #fff;
  border-color: #F85670;
  transform: translateY(-2px) scale(1.03);
}

/*
  ------------ NAVIGATION - DESKTOP & MOBILE -------------------
*/
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  background: #FFFFFFCC;
  padding: 18px 26px;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 4px 16px 0 #2B3A4235;
  z-index: 2000;
}
.main-nav a {
  font-family: 'Quicksand', 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  color: #2B3A42;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 18px;
  border-radius: 30px;
  transition: background 0.19s, color 0.16s;
  position: relative;
}
.main-nav a.cta-primary {
  margin-left: 16px;
  border-radius: 24px;
  box-shadow: 0 2px 12px #1DDBF73a;
  color: white;
}
.main-nav a:hover, .main-nav a:focus {
  background: #1DDBF7;
  color: #181B22;
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 14px;
  filter: drop-shadow(0 2px 2px #2B3A42a0);
}

header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10000;
  width: 100%;
}

/* Hamburger Button */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 16px;
  right: 30px;
  z-index: 10001;
  width: 42px;
  height: 42px;
  background: #1DDBF7;
  color: #2B3A42;
  border-radius: 50%;
  font-size: 2.1rem;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #2B3A42;
  box-shadow: 0 2px 12px #2B3A4219;
  transition: background 0.16s, color 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #2B3A42;
  color: #1DDBF7;
}
/*
   --------- MOBILE NAV OVERLAY ---------
*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #2B3A42F7;
  color: #fff;
  z-index: 3000;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.67,0.1,0.29,0.97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.active { /* must toggle via JS to add .active */
  transform: translateX(0);
}
.mobile-menu-close {
  color: #fff;
  background: #F85670;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 26px 22px 20px 0;
  border: none;
  box-shadow: 0 2px 12px #F8567020;
  transition: background 0.14s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F4B942;
  color: #2B3A42;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 42px;
  margin-top: 18px;
  width: 80vw;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Quicksand', 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 15px 12px;
  border-radius: 26px;
  margin-right: 0;
  background: transparent;
  transition: background 0.16s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #1DDBF7;
  background: #fff;
}

/*
 ------------- HERO SECTION -------------
*/
.hero {
  width: 100%;
  background: linear-gradient(110deg, #1DDBF7 0%, #F4B942 100%);
  color: #2B3A42;
  padding: 54px 0 50px 0;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: 0 3px 24px 0 #2B3A4212;
}
.hero h1 {
  color: #231F20;
  font-size: 3rem;
  margin-bottom: 14px;
  font-family: 'Quicksand', Arial, Helvetica, sans-serif;
}
.hero p {
  color: #2B3A42;
  font-size: 1.15em;
  margin-bottom: 24px;
}

/*
 ------------- FOOTER -------------
*/
footer {
  background: #2B3A42;
  color: #fff;
  padding: 36px 0 18px 0;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -4px 16px 0 rgba(44, 58, 105, 0.12);
  margin-top: 50px;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #F4B942;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #1DDBF7;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: center;
  font-size: 0.98rem;
  margin-top: 10px;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
}
.footer-contact span {
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

/*
  -------- MAP/ADDRESS --------
*/
.map-address {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}
.map-address img {
  width: 38px;
  height: 38px;
}

/*
  ---------- VARIOUS UTILITY CLASSES -----------
*/
.section {
  background: #F7F5F3;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  gap: 24px;
}
/* For feedback snippets and visual color pops */
.feedback-snippet {
  background: #1DDBF7;
  color: #2B3A42;
}

/*
  ------------ COOKIE CONSENT BANNER ----------
*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #2B3A42;
  color: #fff;
  z-index: 3100;
  padding: 22px 10vw 22px 10vw;
  box-shadow: 0 0 19px #1DDBF780;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: cookieBannerIn 0.5s cubic-bezier(0.15,0.75,0.48,1.13);
  gap: 20px;
}
@keyframes cookieBannerIn {
  from { transform: translateY(130%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  font-size: 1.04em;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
}
.cookie-banner-actions {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  font-size: 1rem;
  border: none;
  padding: 11px 28px;
  border-radius: 32px;
  color: #2B3A42;
  font-family: 'Quicksand', 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-right: 0;
  margin-bottom: 5px;
}
.cookie-btn.accept {
  background: #9FFF56;
  color: #231F20;
  box-shadow: 0 1.5px 5px #2B3A422a;
}
.cookie-btn.reject {
  background: #F85670;
  color: #fff;
  box-shadow: 0 1.5px 5px #F856701a;
}
.cookie-btn.settings {
  background: #F4B942;
  color: #2B3A42;
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(1.09);
  box-shadow: 0 3px 13px #1DDBF740;
  outline: none;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,46,60,0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 32px 26px 24px 26px;
  max-width: 95vw;
  width: 410px;
  box-shadow: 0 6px 36px #2B3A4218;
  color: #2B3A42;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookieModalAppear 0.33s ease;
}
@keyframes cookieModalAppear {
  from { transform: scale(0.92) translateY(80px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Quicksand';
  color: #2B3A42;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 18px 0;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category-label {
  flex: 1 1 auto;
  font-size: 1rem;
  color: #181B22;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #F4B942;
  border-radius: 20px;
  position: relative;
  outline: none;
  transition: background 0.17s;
  cursor: pointer;
  border: 1.2px solid #2B3A42;
}
.cookie-toggle:checked {
  background: #1DDBF7;
}
.cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s;
}
.cookie-toggle:checked::before {
  left: 19px;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: #2B3A42;
  color: #fff;
  font-size: 1.35em;
  border-radius: 50%;
  border: none;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 17px;
  right: 19px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F85670;
  color: #fff;
}

/*
 ------------- RESPONSIVE DESIGN -------------------------
*/
@media (max-width: 1024px) {
  .container { max-width: 94vw; }
  .main-nav, .footer-contact, .footer-nav {
    gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .feature-grid, .service-cards, .service-list {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .hero { padding: 38px 0 32px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.06rem; }
  .main-nav { font-size: 1rem; gap: 10px; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
  .feature-grid, .service-cards, .service-list, .footer-contact {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .content-grid { flex-direction: column; gap: 18px; }
  .testimonial-card, .card {
    padding: 19px 10px;
    max-width: 99vw;
  }
  .hero {
    padding: 28px 0 20px 0;
    background: linear-gradient(110deg, #1DDBF7 10%, #F4B942 100%);
  }
}
@media (max-width: 575px) {
  .container {
    padding: 0 6px;
  }
  .section {
    padding: 10px 2px;
  }
  .main-nav img { height: 30px; }
  .mobile-nav { margin-left: 11px; width: 95vw; }
  .hero h1 { font-size: 1.3rem; }
  .feature-grid li, .service-cards li, .service-list li {
    min-width: 90vw;
    font-size: 0.99rem;
    padding: 14px 8px;
  }
  .footer-contact span { font-size: 0.91rem; }
}
@media (max-width: 500px) {
  h1, h2, h3, h4 { font-size: 1rem; }
  .cookie-modal { width: 97vw; min-width: 0; padding: 15px 6px; }
  .cookie-banner { padding: 13px 3vw; }
}

/*
   .text-image-section: responsive flex-direction
*/
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/*
  ------------ ANIMATIONS / MICRO-INTERACTIONS -------------
*/
.card, .testimonial-card, .feature-grid li, .service-cards li, .service-list li {
  transition: box-shadow 0.22s cubic-bezier(0.5,0.2,0.4,1), transform 0.15s;
}
.cta-primary, .cta-secondary, .cookie-btn {
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.16s;
}
.cta-primary:hover, .cta-secondary:hover, .cookie-btn:hover {
  transform: translateY(-1.5px) scale(1.03);
  box-shadow: 0 8px 38px #2B3A4277;
}

/* Hide scrollbars when overlay menus appear */
body.menu-open {
  overflow-y: hidden;
}
