/* ----------------------------------
   Reset & Base
---------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
  background: #16191e;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #E24F61;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #fff;
}
ul {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.3rem;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 38px #E24F6166;
}
h2 {
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 11px;
}
p {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #e9ede8;
}
strong {
  color: #E24F61;
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ----------------------------------
   Tech Futuristic Backgrounds
---------------------------------- */
body, .hero, header, footer {
  background: linear-gradient(125deg, #1a2025 0%, #3B4941 100%);
}
.hero {
  background: linear-gradient(125deg, #24282f 0%, #3B4941 100%);
  padding: 64px 0 48px 0;
  box-shadow: 0 4px 40px #161c2260;
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: '';
  display: block;
  position: absolute;
  left: 55%;
  top: -30px;
  width: 380px;
  height: 400px;
  background: radial-gradient(circle, #E24F6165 10%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
}

/* ----------------------------------
   Layout Flex Patterns (Mandatory)
---------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 4px 18px #1017202d;
  background: #202426;
  transition: box-shadow .22s, transform .2s;
}
.card:hover {
  box-shadow: 0 6px 36px #E24F6140;
  transform: translateY(-3px) 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;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px #1a272833;
  color: #232a26;
  font-size: 1rem;
  transition: box-shadow .2s, border .2s;
  border: 2px solid #E24F6110;
}
.testimonial-card:hover {
  box-shadow: 0 8px 38px #E24F6140, 0 1px 8px #3B49410A;
  border-color: #E24F61;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #23282f;
  border-radius: 14px;
  padding: 28px 18px 20px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2.5px 16px #29282823;
  transition: box-shadow .2s, background .22s;
  border-left: 4px solid #E24F61;
}
.feature-item:hover {
  background: #2e3238;
  box-shadow: 0 6px 30px #E24F6133;
}
.category-list, .text-section {
  background: #212628;
  border-radius: 12px;
  padding: 22px 18px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 10px #10141629;
}
.category-list h2, .category-list ul, .text-section h3, .text-section ul {
  color: #fff;
}
.category-list ul, .text-section ul {
  margin: 0 0 0 20px;
  padding: 0;
}
.text-section h2, .text-section h3 {
  color: #F2ECE3;
}

/* Content Wrapper to Flex */
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.contact-short, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 12px;
  color: #fff !important;
}
.contact-short div, .contact-details div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-embbed {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}
.next-steps {
  background: #1E2227;
  padding: 15px 17px;
  border-radius: 12px;
  margin: 24px 0 26px;
  color: #dadfe6;
}
.next-steps ul {
  padding-left: 18px;
  margin-bottom: 10px;
  color: #E24F61;
}
.confirmation .text-section p {
  color: #F2ECE3;
}

/* Lists */
ul {
  list-style: disc inside;
  margin-bottom: 14px;
}
ul ul {
  margin-left: 20px;
}
li {
  margin-bottom: 7px;
}

/* ----------------------------------
   NAVIGATION
---------------------------------- */
header {
  position: relative;
  padding: 0;
  background: linear-gradient(135deg, #222629 64%, #3B4941 100%);
  box-shadow: 0 1.5px 14px #181d211f;
  z-index: 40;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 16px 0;
  justify-content: flex-start;
}
.main-nav img {
  height: 38px;
  margin-right: 14px;
}
.main-nav a {
  color: #F2ECE3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .1px;
  padding: 8px 14px;
  border-radius: 9px;
  transition: background .22s, color .17s, box-shadow .18s;
  position: relative;
  z-index: 2;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E24F61;
  color: #fff;
  box-shadow: 0 3px 20px #E24F6133;
}
.cta-primary {
  background: #E24F61;
  color: #fff !important;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 9px 22px;
  border-radius: 30px;
  box-shadow: 0 2px 32px #E24F6133;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  letter-spacing: 0.02em;
  transition: background .23s, box-shadow .17s, color .18s, transform .13s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #D23049;
  color: #fff;
  box-shadow: 0 4px 38px #E24F613F;
  transform: translateY(-2px) scale(1.03);
}

/* ----------------------------------
   MOBILE MENU
---------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 18px;
  background: #E24F61;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 10px;
  padding: 5px 14px;
  cursor: pointer;
  z-index: 100;
  transition: background .18s, color .12s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #fff;
  background: #D23049;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 370px;
  height: 100vh;
  background: #16191e;
  transform: translateX(110vw);
  transition: transform .37s cubic-bezier(.49,.19,.23,.96);
  z-index: 9999;
  box-shadow: -4px 0 32px #00000030;
  padding: 38px 24px 16px 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #E24F61;
  color: #fff;
  font-size: 2.1em;
  border: none;
  border-radius: 8px;
  align-self: flex-end;
  margin-bottom: 29px;
  margin-top: -14px;
  cursor: pointer;
  padding: 3px 18px 1px 18px;
  transition: background .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #D23049;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #F2ECE3;
  background: none;
  padding: 11px 2px;
  border-radius: 7px;
  transition: background .17s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E24F61;
  color: #fff;
}

/* Hide main nav, show burger on mobile */
@media (max-width: 950px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 951px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Overlay for mobile menu */
.mobile-menu.open:before {
  content: '';
  position: fixed;
  left: 0; top: 0; height: 100vh; width: 100vw;
  background: #10141677;
  z-index: -1;
}

/* Body scroll lock class for mobile menu */
body.menu-open {
  overflow: hidden;
}

/* ----------------------------------
   BUTTONS & INTERACTIONS
---------------------------------- */
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* ----------------------------------
   TESTIMONIALS
---------------------------------- */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #3B4941;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: .92rem;
  color: #E24F61;
  font-weight: 600;
}

/* ----------------------------------
   FOOTER
---------------------------------- */
footer {
  background: linear-gradient(135deg, #1A2026 30%, #292e33 100%);
  padding: 40px 0 24px 0;
  box-shadow: 0 -2px 24px #16191E25;
  color: #F2ECE3;
  font-size: 1rem;
  margin-top: 44px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #F2ECE3;
  font-size: .98rem;
  padding: 5px 10px;
  transition: color .17s, text-decoration .12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E24F61;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-branding img {
  height: 34px;
}
.footer-branding span {
  font-size: 1.12rem;
  color: #F2ECE3;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}
.social-links a {
  background: #E24F61;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  transition: background .16s, transform .13s;
}
.social-links a:hover {
  background: #fff;
  transform: scale(1.09);
}
.social-links img {
  height: 19px;
  width: 19px;
}
.footer-contact {
  margin-top: 8px;
  text-align: center;
  color: #F2ECE3;
  font-size: .98rem;
}

/* ----------------------------------
   Cookie Consent Banner & Modal
---------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20000;
  padding: 22px 30px 18px 30px;
  background: #23282f;
  color: #fff;
  font-size: 1.05rem;
  box-shadow: 0 -4px 44px #090e1170;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  transition: transform .38s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0.01;
}
.cookie-banner-message {
  flex: 4;
  min-width: 200px;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex: 1;
  min-width: 220px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-btn {
  background: #E24F61;
  color: #fff;
  border-radius: 22px;
  padding: 7px 22px;
  border: none;
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1rem;
  margin-right: 2px;
  cursor: pointer;
  font-weight: 600;
  transition: background .16s, transform .1s;
  box-shadow: 0 3px 16px #E24F6120;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #E24F61;
}
.cookie-btn.cookie-btn-reject {
  background: #fff;
  color: #E24F61;
  border: 1.5px solid #E24F61;
}
.cookie-btn.cookie-btn-reject:hover, .cookie-btn.cookie-btn-reject:focus {
  background: #E24F61;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 20010;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: #16191ecc;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: opacity .25s;
}
.cookie-modal {
  background: #fff;
  color: #23282f;
  border-radius: 14px;
  max-width: 370px;
  width: 95vw;
  padding: 32px 26px 24px 26px;
  box-shadow: 0 10px 72px #10141670;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: cookie-modal-slide .44s cubic-bezier(.61,.35,.32,.98);
  font-size: 1.03rem;
}
@keyframes cookie-modal-slide {
  from {transform: translateY(150px) scale(.87); opacity: 0;}
  to   {transform: none; opacity: 1;}
}
.cookie-modal h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #E24F61;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-weight: 500;
  color: #23282f;
  user-select: none;
}
.cookie-category input[type='checkbox'] {
  accent-color: #E24F61;
  width: 17px;
  height: 17px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 11px; right: 15px;
  background: #E24F61;
  color: #fff;
  border: none;
  border-radius: 6.5px;
  font-size: 1.75rem;
  padding: 1px 14px 1px 14px;
  cursor: pointer;
  transition: background .12s;
  box-shadow: 0 2px 14px #E24F6111;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #D23049;
}

/* ----------------------------------
   Media Queries (Responsive)
---------------------------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 780px;
  }
  .footer-branding span {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 9px;
  }
  h1 { font-size: 1.58rem; }
  h2 { font-size: 1.12rem; }
  .section, .hero {
    padding: 28px 4vw;
  }
  .feature-item { padding: 18px 10px 13px 13px; }
  .footer-branding {
    flex-direction: column;
    text-align: center;
    gap: 7px;
  }
  .social-links {
    gap: 12px;
  }
  .footer-contact {
    font-size: .89rem;
  }
  .content-wrapper,
  .content-grid,
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .section, .hero {
    margin-bottom: 36px;
  }
  .testimonials .content-wrapper {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.24rem; }
  h2 { font-size: 1rem; }
  .footer-branding img {
    height: 24px;
  }
  .hero {
    padding: 24px 2vw 22px 2vw;
  }
  .section {
    padding: 17px 3vw;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 11px;
    padding: 14px 3vw 12px 3vw;
    align-items: flex-start;
  }
  .cookie-banner-actions {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }
}

/* ----------------------------------
   Miscellaneous Decor/Visual
---------------------------------- */
::-webkit-scrollbar {
  width: 7px;
  background: #1a2025;
}
::-webkit-scrollbar-thumb {
  background: #E24F61;
  border-radius: 5px;
}

.highlight-note {
  background: #E24F61;
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 18px;
  box-shadow: 0 1px 9px #E24F6136;
  font-size: 1rem;
}

/* Add glow to CTA, buttons, some cards */
.cta-primary,
button:focus,
button:active {
  box-shadow: 0 0 0 2.5px #E24F6190, 0 2px 18px #E24F6170;
}
.card, .feature-item, .testimonial-card {
  border-radius: 14px;
}

/* ----------------------------------
   Accessibility
---------------------------------- */
:focus-visible {
  outline: 2px solid #E24F61;
  outline-offset: 2px;
}

/* ----------------------------------
   Animation Classes
---------------------------------- */
.fadein {
  animation: fadein .55s cubic-bezier(.58,.41,.39,.89);
}
@keyframes fadein {
  0% {opacity: 0; transform: translateY(25px);}
  100% {opacity:1; transform: none;}
}

/* ----------------------------------
   END
---------------------------------- */
