/* Electra Burst Okna – Soft Pastel UI – style.css */

/*
  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;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  border: none;
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
:focus {
  outline: 2px solid #33A2C1;
  outline-offset: 2px;
}

/*
  SOFT PASTEL DESIGN: COLOR VARIABLES
------------------------------------------
*/
:root {
  /* Brand Colors (with pastel tweaks) */
  --primary: #195874; /* brand deep blue */
  --primary-pale: #e5f2fa; /* pastel background for primary */
  --secondary: #f4f7fb; /* very soft blueish underscore */
  --accent: #33a2c1; /* light teal accent */
  --accent-pale: #daf3fb; /* more subtle pastel accent */

  /* Pastel system */
  --pastel-blue: #bcdff1;
  --pastel-green: #dadfe1;
  --pastel-yellow: #fcf8e3;
  --pastel-peach: #ffe8e7;
  --pastel-mint: #e8f9f1;

  --white: #fff;
  --black: #222;
  --grey: #6b7d8b;
  --shadow: 0 6px 32px rgba(51, 162, 193, 0.04), 0 1.5px 10px rgba(25,88,116,0.04);
  --radius: 18px;

  /* Typography */
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/*
  GLOBAL BODY & TYPO
------------------------------------------
*/
body {
  font-family: var(--font-body);
  background: var(--secondary);
  color: var(--black);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, ul, li, blockquote {
  font-size: 1.06rem;
  color: var(--grey);
  margin-bottom: 12px;
}
strong {
  color: var(--primary);
  font-weight: 600;
}

/* Typography scale for large screens */
@media (min-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.5rem; }
  p, ul, li, blockquote { font-size: 1.14rem; }
}

/*
  CONTAINERS & LAYOUT UTILS (Flexbox only)
------------------------------------------
*/
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: var(--pastel-blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  min-width: 220px;
  flex: 1 1 270px;
  transition: transform 0.12s, box-shadow 0.22s;
}
.card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 14px 32px rgba(51,162,193,0.10);
}

.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(--pastel-mint);
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.18s;
  flex: 1 1 330px;
}
.testimonial-card blockquote {
  color: var(--primary);
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.7;
  margin-right: 8px;
  margin-bottom: 0;
}
.testimonial-card strong {
  font-size: 1rem;
  font-weight: 700;
}
.testimonials .testimonial-card {
  background: var(--white);
  border-left: 6px solid var(--accent);
}

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

/* UL feature and service lists */
.features ul, .services ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 6px;
  margin-bottom: 24px;
}
.features ul li, .services ul li {
  padding-left: 0.5em;
  position: relative;
  color: var(--primary);
  font-size: 1rem;
}
.features ul li:before, .services ul li:before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0px 0px #fff;
  vertical-align: middle;
}

.service-price {
  font-family: var(--font-display);
  font-size: 0.98em;
  color: var(--accent);
  margin-left: 6px;
  font-weight: 600;
}

/*
  BUTTONS & INTERACTIVE
------------------------------------------
*/
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #195874;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 13px 35px;
  border-radius: 28px;
  box-shadow: 0 3px 14px rgba(51,162,193,0.08);
  cursor: pointer;
  border: none;
  transition: background 0.16s, color 0.18s, box-shadow 0.18s, transform 0.10s;
  margin-top: 18px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 28px rgba(25,88,116,0.14);
  transform: translateY(-2px) scale(1.02);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 26px;
  border: 2px solid var(--accent);
  box-shadow: 0 2px 12px rgba(51,162,193,0.08);
  cursor: pointer;
  transition: background 0.13s, color 0.13s, border 0.13s, box-shadow 0.17s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--pastel-blue);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 6px 16px rgba(25,88,116,0.13);
}
.btn-group {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/*
  HEADER + MAIN NAVIGATION
------------------------------------------
*/
header {
  background: var(--white);
  border-bottom: 1px solid #e6eff5;
  box-shadow: 0 2px 20px rgba(25,88,116,0.05);
  position: sticky;
  top: 0;
  z-index: 90;
}
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  justify-content: space-between;
}
.logo-link img {
  max-height: 45px;
  margin-right: 18px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
}
.main-nav li a {
  font-family: var(--font-display);
  font-size: 1.03rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 16px;
  padding: 6px 13px;
  transition: background 0.18s, color 0.18s;
}
.main-nav li a:hover, .main-nav li a:focus {
  background: var(--accent-pale);
  color: var(--accent);
}

/* Mobile Hamburger */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: var(--accent);
  background: transparent;
  border: none;
  margin-left: 12px;
  padding: 4px 12px;
  cursor: pointer;
  border-radius: 14px;
  transition: background 0.14s;
  z-index: 130;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent-pale);
  color: var(--primary);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250, 255, 255, 0.98);
  z-index: 2000;
  transform: translateX(110%);
  transition: transform 0.33s cubic-bezier(.54,.01,.5,1), box-shadow 0.17s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  width: 100vw;
  min-height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 4px 28px 0 rgba(51,162,193,0.14);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  color: var(--primary);
  background: none;
  border: none;
  padding: 22px 22px 6px 0;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
}

.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}
.mobile-nav a {
  width: 100%;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary);
  padding: 22px 34px;
  border-bottom: 1px solid #e2eaf2;
  transition: background 0.14s, color 0.18s;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  min-height: 40px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent-pale);
  color: var(--accent);
}

/* Show/hide nav on mobile */
@media (max-width: 1020px) {
  .main-nav ul { display: none; }
  .main-nav .btn-primary { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
}
@media (max-width: 1020px) {
  .main-nav { gap: 14px; }
}
@media (min-width: 1021px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none; }
}


/*
  HERO SECTIONS
------------------------------------------
*/
.hero {
  background: linear-gradient(120deg, var(--pastel-blue) 60%, var(--pastel-mint) 100%);
  border-radius: 0 0 48px 48px;
  box-shadow: 0 8px 24px 0 rgba(25,88,116,0.07);
  padding: 50px 0 60px 0;
  margin-bottom: 60px;
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 20px;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  padding-top: 10px;
}
.hero h1 {
  background: linear-gradient(98deg, var(--primary), var(--accent) 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*
  SERVICES & FEATURES
------------------------------------------
*/
.services, .features {
  background: var(--white);
}

/* CTA Section */
.cta {
  background: var(--pastel-mint);
  margin-bottom: 0;
  border-radius: 28px;
  padding: 48px 20px;
  box-shadow: 0 2px 32px 0 rgba(25,88,116,0.06);
  text-align: center;
}
.cta h2, .cta p {
  text-align: center;
}
.cta .content-wrapper {
  align-items: center;
}

/*
  GENERAL SPACING ADJUSTMENT
------------------------------------------
*/
section {
  margin-bottom: 60px;
  padding: 40px 0 30px 0;
}
@media (max-width: 650px) {
  section { padding: 28px 0 18px 0; }
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 26px;
}

/* Small cards or info panels */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/*
  CONTACT DETAILS / INFO
------------------------------------------
*/
.contact-details .text-section,
.contact .text-section {
  background: var(--pastel-yellow);
  border-radius: var(--radius);
  padding: 24px 18px;
  font-size: 1rem;
  box-shadow: 0 1px 8px rgba(25,88,116,0.09);
}

/*
  FOOTER
------------------------------------------
*/
footer {
  width: 100%;
  background: var(--primary-pale);
  border-top: 1.3px solid #e2eff3;
  padding: 28px 0 0 0;
  margin-top: 36px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--primary);
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--accent);
  padding: 4px 7px;
  border-radius: 10px;
  transition: background 0.12s, color 0.11s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--accent-pale);
  color: var(--primary);
}
.footer-company {
  text-align: center;
  color: #88b6ca;
  font-size: 14px;
  margin-bottom: 8px;
}

/*
  PRIVACY, COOKIES, TERMS POLICY PAGES
------------------------------------------
*/
.privacy-policy, .cookies-policy, .gdpr, .terms, .thank-you {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2.4px 12px rgba(51,162,193,0.06);
  padding: 34px 20px 24px 20px;
}
.text-section h2 {
  color: var(--accent);
  font-size: 1.25rem;
  margin-top: 22px;
  margin-bottom: 10px;
  font-family: var(--font-display);
}
@media (min-width: 960px) {
  .privacy-policy, .cookies-policy, .gdpr, .terms, .thank-you {
    padding: 46px 40px 32px 40px;
  }
}

/*
  RESPONSIVE DESIGN & FLEXBOX
------------------------------------------
*/
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 4vw; }
  .section, .hero, .cta, .card {
    padding-left: 11px;
    padding-right: 11px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 520px) {
  .main-nav {
    padding: 14px 0;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .btn-primary, .btn-secondary {
    padding: 12px 10px;
    font-size: 1rem;
  }
  .section, .hero, .cta { padding: 23px 1vw; border-radius: 18px; }
  .privacy-policy, .cookies-policy, .gdpr, .terms, .thank-you { padding: 18px 6px; }
}

/*
  HIERARCHY & VERTICAL SPACING
------------------------------------------
*/
section, .section {
  margin-bottom: 60px;
  padding-top: 34px;
  padding-bottom: 34px;
}
.card, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}

/*
  COOKIES CONSENT BANNER & MODAL
------------------------------------------
*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  max-width: 100vw;
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--white);
  border-top: 2.5px solid var(--pastel-blue);
  box-shadow: 0 -4px 30px 0 rgba(25,88,116,0.09);
  padding: 18px 4vw;
  animation: cookies-slidein 0.45s cubic-bezier(.54,.01,.5,1);
}
@keyframes cookies-slidein { from { transform: translateY(100%); opacity:0; } to { transform: translateY(0); opacity:1; } }
.cookie-banner p {
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 470px;
}
.cookie-banner .btn-group {
  gap: 7px;
  margin-top: 0;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  padding: 8px 20px;
  font-size: 0.98rem;
  border-radius: 19px;
  box-shadow: none;
}
.cookie-banner .btn-secondary {
  background: var(--pastel-blue);
  border-color: var(--accent);
  color: var(--primary);
}
.cookie-banner .btn-secondary:hover {
  background: var(--pastel-mint);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 15px 4vw;
  }
  .cookie-banner p { max-width: 100%; }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(68,124,144,0.23);
  z-index: 3800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.open {
  opacity: 1; pointer-events: auto;
}
.cookie-modal {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 4px 44px 0 rgba(25,88,116,0.12);
  max-width: 420px;
  width: 96vw;
  padding: 36px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookies-modal-in 0.38s cubic-bezier(.54,.01,.5,1);
}
@keyframes cookies-modal-in { from { transform: translateY(70px) scale(.89); opacity:0; } to { transform: translateY(0) scale(1); opacity:1; } }
.cookie-modal h2 { color: var(--primary); font-size: 1.3rem; }
.cookie-modal ul {
  margin: 20px 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-modal label {
  font-size: 1rem;
  cursor: pointer;
}
.cookie-switch {
  appearance: none;
  width: 38px;
  height: 20px;
  border-radius: 10px;
  background: var(--pastel-blue);
  position: relative;
  outline: none;
  transition: background 0.18s;
  margin-right: 7px;
}
.cookie-switch:checked {
  background: var(--accent);
}
.cookie-switch::before {
  content: '';
  position: absolute;
  left: 2.5px; top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(19,85,126,0.09);
  transition: left 0.17s;
}
.cookie-switch:checked::before {
  left: 19px;
}
.cookie-modal .btn-group {
  justify-content: flex-end;
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  padding: 8px 17px;
}
.cookie-modal .cookie-essential {
  color: var(--grey);
  font-size: 0.95em;
  font-style: italic;
}
.cookie-modal .close-modal {
  background: none;
  color: var(--accent);
  border: none;
  font-size: 1.5rem;
  position: absolute;
  right: 15px; top: 13px;
  cursor: pointer;
  line-height: 1;
}

/*
  MICRO ANIMATIONS & INTERACTIONS
------------------------------------------
*/
.btn-primary, .btn-secondary {
  transition: background 0.14s, color 0.14s, box-shadow 0.14s, transform .10s;
}
a, button {
  transition: color 0.14s, background 0.14s;
}
.card, .testimonial-card {
  transition: box-shadow 0.16s, transform 0.13s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 10px 26px 0 rgba(51,162,193,0.10);
  transform: translateY(-3px);
}

/*
  ACCESSIBILITY
------------------------------------------
*/
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    transition: none !important;
    animation: none !important;
  }
}

/*
  PRINT-FRIENDLY
------------------------------------------
*/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #111; }
  .section, .hero, .cta, .card, .testimonial-card { box-shadow: none; background: none; }
  * { color: #111 !important; }
}
