/* 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, input, button, select, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #F8F5F1;
  color: #254159;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  color: #09C8D6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F45B5B;
}

button, .cta-button {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  cursor: pointer;
}

/* FONT: Montserrat (bold display) and Open Sans (body) */
h1, h2, h3, h4, h5, h6, .cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -1.5px;
}

h1 {
  font-size: 2.5rem;
  color: #254159;
  margin-bottom: 18px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #09C8D6;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #254159;
}

.subheadline {
  font-size: 1.15rem;
  color: #F45B5B;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

p, li, blockquote, dl, dd, dt {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #254159;
}

blockquote, .tagline {
  background: #fff;
  border-left: 5px solid #09C8D6;
  padding: 16px 26px;
  font-size: 1.06rem;
  font-style: italic;
  border-radius: 12px;
  color: #254159;
  margin: 18px 0;
  box-shadow: 0 4px 16px 0 rgba(251, 182, 62, 0.07);
}

/* COLOR PALETTE */
:root {
  --primary: #254159;
  --secondary: #BFAE9E;
  --accent: #F8F5F1;
  --electric-blue: #09C8D6;
  --vivid-yellow: #F9A826;
  --hot-pink: #F45B5B;
  --deep-purple: #8013C2;
  --light-bg: #fff;
  --shadow: 0 4px 24px 0 rgba(36, 65, 89, 0.07);
}

/* LAYOUT PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 32px;
}

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

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

.text-section {
  background: var(--light-bg);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 32px 22px;
  gap: 14px;
}

.features-grid, .services-list, .features-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}

.feature-block, .service-block {
  background: var(--light-bg);
  box-shadow: 0 2px 20px 0 rgba(9,200,214,0.10);
  border-radius: 20px;
  padding: 26px 22px 22px 22px;
  margin-bottom: 20px;
  min-width: 270px;
  flex: 1 1 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.18s;
  border: 2.5px solid transparent;
  position: relative;
}
.feature-block:hover, .service-block:hover {
  box-shadow: 0 8px 32px 0 rgba(36, 65, 89, 0.14);
  border-color: var(--electric-blue);
  transform: translateY(-8px) scale(1.025);
}

.features-icons {
  flex-direction: row;
  gap: 18px;
  align-items: center;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(9,200,214,0.09);
  position: relative;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(36, 65, 89, 0.15);
}

.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-left: 4px solid var(--vivid-yellow);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(36,65,89,0.06);
  font-size: 1.02rem;
  color: #181818;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.19s;
}
.testimonial-card span {
  font-weight: bold;
  color: var(--electric-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  align-self: flex-end;
}
.testimonial-card:hover {
  border-left-color: var(--hot-pink);
  box-shadow: 0 6px 26px rgba(36,65,89,0.13);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.project-block {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(36, 65, 89, 0.07);
  margin-bottom: 24px;
  padding: 18px 22px 8px 22px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, #F9A826 0%, #09C8D6 100%);
  color: #fff;
  padding: 54px 0 54px 0;
  margin-bottom: 50px;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 40px -10px rgba(9,200,214,0.09);
  position: relative;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper h1 {
  color: #fff;
  text-shadow: 0 2px 4px #25415966;
}
.hero .cta-button {
  margin-top: 18px;
}

/* BUTTON & CTA */
.cta-button, .service-block .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  background: linear-gradient(90deg, #F45B5B 0%, #09C8D6 100%);
  color: #fff;
  font-size: 1.125rem;
  border: none;
  outline: none;
  border-radius: 999px;
  box-shadow: 0 2px 24px rgba(244,91,91,.11);
  font-weight: 700;
  transition: background 0.21s, transform .14s, box-shadow 0.22s;
  cursor: pointer;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #09C8D6 0%, #F45B5B 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 36px rgba(36,65,89,0.15);
}

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(9,200,214,0.08);
  position: relative;
  z-index: 30;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 74px;
  position: relative;
}
.main-nav > a img {
  height: 43px;
  width: auto;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin: 0 10px;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #254159;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: color 0.2s;
  padding: 6px 0;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: #F9A826;
}
.main-nav .cta-button {
  margin-left: 28px;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 2px 18px rgba(9,200,214,0.10);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 20px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #09C8D6;
  z-index: 51;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #F45B5B;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #254159ee;
  z-index: 1002;
  overflow-y: auto;
  transform: translateX(-100vw);
  transition: transform 0.31s cubic-bezier(.83,.06,.21,1.06);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 52px 30px 28px 30px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 25px;
  top: 18px;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #F9A826;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 1100;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F45B5B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 14px 0;
  border-bottom: 1px solid #09C8D6;
  letter-spacing: 1px;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F45B5B;
  background: transparent;
}

/* --- HIDE MAIN NAV ON MOBILE --- */
@media(max-width: 930px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media(max-width: 768px) {
  .main-nav > a img {
    height: 35px;
  }
}

/* --- CONTENT RESPONSIVE --- */
@media(max-width: 1024px) {
  .container {
    max-width: 97vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .features-grid, .services-list, .card-container, .content-grid {
    gap: 16px;
  }
}

@media(max-width: 768px) {
  .hero {
    padding: 32px 0 35px 0;
    margin-bottom: 34px;
    border-radius: 0 0 30px 30px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .cta-button {
    font-size: 1rem;
    padding: 12px 24px;
  }
  .content-wrapper, .text-section {
    padding: 18px 8px;
    border-radius: 12px;
  }
  .features-grid, .services-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-block, .service-block {
    min-width: 90%;
    width: 100%;
    margin-right: 0;
  }
  .content-grid {
    gap: 10px;
    flex-direction: column;
  }
  .testimonial-card, .project-block {
    padding: 12px 9px 8px 16px;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    padding: 25px 6px;
    border-radius: 20px;
  }
}

@media(max-width: 500px) {
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  .main-nav > a img {
    height: 26px;
  }
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  padding: 24px 0 8px 0;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -8px 36px -11px rgba(36,65,89,0.09);
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #F9A826;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 0 8px;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #09C8D6;
}
.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-bottom: 10px;
}
.footer-contact img {
  height: 38px;
  border-radius: 7px;
  background: #fff;
  padding: 3px 5px;
}
.footer-contact p {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.2px;
}
.footer-meta {
  font-size: 0.98rem;
  color: #fdf1ec;
  text-align: center;
  margin-top: 8px;
}

/* FAQ STYLES */
dl {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 9px 0 0 0;
}
dt {
  font-weight: bold;
  color: #09C8D6;
  font-size: 1.05rem;
}
dd {
  margin-left: 13px;
  margin-bottom: 10px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9999;
  background: linear-gradient(90deg, #09C8D6 0%, #F9A826 100%);
  color: #254159;
  padding: 22px 24px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 -2px 28px rgba(36,65,89,0.09);
  border-radius: 16px 16px 0 0;
  font-size: 1.04rem;
  animation: slideUpCookie 0.6s cubic-bezier(.81,-0.01,.22,1.13);
}

@keyframes slideUpCookie {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner-text {
  flex: 1 1 60%;
  color: #254159;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-banner-buttons {
  flex: 1 1 40%;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-btn {
  padding: 10px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 18px;
  background: #fff;
  color: #254159;
  box-shadow: 0 2px 8px #25415922;
  font-size: 1.08rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.16s;
}
.cookie-btn.accept {
  background: #F45B5B;
  color: #fff;
}
.cookie-btn.reject {
  background: #BFAE9E;
  color: #254159;
}
.cookie-btn.settings {
  background: #09C8D6;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(1.10);
  transform: scale(1.05);
}

/* Cookie Modal Styles */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(37,65,89,0.55);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieBG 0.23s;
}
.cookie-modal-backdrop.open {
  display: flex;
}
@keyframes fadeInCookieBG {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  max-width: 375px;
  min-width: 275px;
  box-shadow: 0 6px 48px #25415955;
  color: #254159;
  padding: 26px 22px 22px 22px;
  position: relative;
  animation: slideInCookieModal 0.36s cubic-bezier(.8,-0.07,.2,1.13);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes slideInCookieModal {
  from { transform: translateY(80px) scale(.9); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.20rem;
  color: #09C8D6;
  margin-bottom: 7px;
}
.cookie-modal-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 16px;
}
.cookie-modal-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal-toggle {
  width: 31px;
  height: 17px;
  background: #BFAE9E;
  border-radius: 10px;
  position: relative;
  margin-left: 7px;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal-toggle input {
  display: none;
}
.cookie-modal-toggle .slider {
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.19s, background 0.18s;
}
.cookie-modal-toggle input:checked + .slider {
  left: 16px;
  background: #09C8D6;
}
.cookie-modal-toggle input:checked ~ .cookie-modal-toggle {
  background: #09C8D6;
}
.cookie-modal-btn-row {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: #254159;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #F45B5B; }

@media(max-width: 576px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 15px 7px 14px 9px;
    font-size: 0.98rem;
  }
  .cookie-banner-buttons {
    width: 100%;
    flex: 1 1 100%;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
  }
  .cookie-modal {
    min-width: 95vw;
    max-width: 99vw;
    padding: 14px 4vw 10px 4vw;
    border-radius: 13px;
  }
}

/* --- FORMS (if any add them here for future-proofing) --- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 11px 12px;
  border-radius: 7px;
  border: 1.5px solid #09C8D6;
  background: #fff;
  margin-bottom: 12px;
  outline: none;
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #F45B5B;
}

/* --- UTILITIES --- */
.mt-32 { margin-top: 32px !important; }
.mb-16 { margin-bottom: 16px !important; }
.text-center { text-align: center; }
.hide { display: none !important; }

/* --- Misc --- */
::-webkit-scrollbar {
  width: 10px;
  background: #BFAE9E22;
}
::-webkit-scrollbar-thumb {
  background: #09C8D6;
  border-radius: 7px;
}

/* --- SELECTION STYLES --- */
::selection {
  background: #F45B5B;
  color: #fff;
}

/* --- Misc Animation for CTA pulse --- */
.cta-button {
  animation: ctaPulse 2.5s infinite cubic-bezier(.6,.01,.18,.98);
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 16px 0 #09C8D666; }
  50% { box-shadow: 0 0 30px 8px #F9A82644; }
}

/* --- END OF FILE --- */