/* ==================================================  
   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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F6F9FB;
  color: #1B314F;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.85,.25,.43,1.08);
}
a:focus {
  outline: 2px solid #FFDD40;
  outline-offset: 2px;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

/* ================
   VARIABLES
   ================ */
:root {
  --color-primary: #1B314F;
  --color-secondary: #4E7EAB;
  --color-accent: #F6F9FB;
  --color-electric: #FFDD40;
  --color-hot: #FF522E;
  --color-pink: #F73382;
  --color-success: #00E07B;
  --color-focus: #FFDD40;
  --color-dark-text: #162033;
  --color-light-bg: #F6F9FB;
}

/* ===============
   TYPOGRAPHY
   =============== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--color-primary);
}
h1 { font-size: 2.5rem; margin-bottom: 18px; line-height: 1.1; }
h2 { font-size: 1.75rem; margin-bottom: 14px; font-weight: 900; }
h3 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 700; color: var(--color-secondary);}
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p, li, ul, ol, table {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--color-dark-text);
  line-height: 1.7;
}
strong, b {
  color: var(--color-primary);
  font-weight: 700;
}
blockquote {
  padding: 20px 30px;
  margin: 0 0 22px 0;
  background: var(--color-light-bg);
  border-left: 6px solid var(--color-secondary);
  font-style: italic;
  color: var(--color-primary);
}

/* ===============
   LAYOUT & SPACING
   =============== */
.container {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  /* for spacing and vertical rhythm */
  margin-bottom: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgb(78 126 171 / 10%), 0 1px 2px 0 rgb(0 0 0 / 5%);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgb(247 51 130 / 15%), 0 2px 6px 0 rgb(0 0 0/7%);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 32px;
}
.feature-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin: 32px 0 0 0;
}
.feature-grid > div {
  flex: 1 1 200px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgb(30 49 79 / 6%);
  padding: 22px 26px 22px 26px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  border-bottom: 4px solid var(--color-electric);
  transition: box-shadow 0.22s, transform 0.22s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 32px 0 rgb(255 221 64 / 19%), 0 3px 8px 0 rgb(0 0 0/8%);
  transform: translateY(-5px) scale(1.03);
}
.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;
}
.text-section {
  margin-bottom: 24px;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin: 32px 0 0 0;
}
.timeline > div {
  background: var(--color-electric);
  color: #1B314F;
  border-radius: 18px;
  padding: 18px 28px;
  font-weight: bold;
  font-size: 1.03rem;
  letter-spacing: 0.02em;
}

.business-hours {
  background: var(--color-electric);
  color: #1B314F;
  padding: 12px 20px;
  border-radius: 12px;
  margin: 14px 0 22px 0;
  display: inline-block;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .feature-grid > div { min-width: 185px; }
  .timeline { gap: 12px; }
}

/* =====================
   HERO & CALL-TO-ACTION
   ===================== */
.hero-section {
  padding: 80px 0 50px 0;
  background: linear-gradient(82deg, #FFD600 0%, #F73382 89%, #4E7EAB 100%);
  background-size: 320% 320%;
  box-shadow: 0px 2px 8px 0 rgb(47 85 132 /12%);
}
.hero-section h1, .hero-section p {
  color: #1B314F;
}
.hero-section h1 {
  text-shadow: 0 2px 12px rgba(255,221,64,.10);
}
.hero-section .content-wrapper {
  padding-left: 0;
  padding-right: 0;
  max-width: 800px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #FFDD40 0%, #F73382 100%);
  color: #1B314F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 16px 44px;
  border-radius: 30px;
  margin: 22px 4px 0 0;
  box-shadow: 0 6px 24px 0 rgb(255 52 130 / 17%);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, box-shadow 0.18s, color 0.2s;
  text-shadow: 0 1px 6px rgba(34,38,60,.12);
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #F73382 0%, #FFDD40 100%);
  color: #fff;
  box-shadow: 0 10px 32px 0 rgb(78 126 171 / 19%);
}

/* =======================
   NAVIGATION & HEADER
   ======================= */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2.5px 12px 0 rgb(78 126 171 / 8%);
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  max-width: 1110px;
  margin: 0 auto;
  padding: 16px 20px 16px 20px;
  position: relative;
}
header nav .logo {
  display: flex;
  align-items: center;
  height: 56px;
  margin-right: 15px;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  list-style: none;
}
header nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 7px 16px;
  border-radius: 18px;
  transition: background 0.17s, color 0.16s;
  position: relative;
}
header nav ul li a:hover,
header nav ul li a:focus {
  color: #fff;
  background: var(--color-secondary);
}
header nav .cta-btn {
  margin-left: 10px;
  margin-right: 0;
  font-size: 1rem;
}

/* ===========================
   MOBILE BURGER NAVIGATION
   =========================== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-electric);
  color: #1B314F;
  border-radius: 8px;
  border: 2px solid var(--color-secondary);
  font-size: 2.2rem;
  padding: 5px 18px 7px 14px;
  margin-right: 8px;
  margin-left: auto;
  z-index: 1201;
  box-shadow: 0 2px 6px 0 rgb(248 51 130 / 8%);
  transition: background 0.21s, color 0.21s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-hot);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 0 999vw rgba(31,43,75,0.16);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.85,.25,.43,1.08);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  background: var(--color-hot);
  color: #fff;
  border-radius: 30px;
  align-self: flex-end;
  margin: 18px 16px 0 0;
  padding: 6px 16px 7px 10px;
  transition: background 0.19s, color 0.14s;
  z-index: 4003;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--color-secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 32px 28px 0 40px;
  gap: 26px;
  width: 100vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-primary);
  padding: 12px 10px;
  border-radius: 10px;
  transition: background 0.19s, color 0.14s;
  min-width: 90vw;
  display: block;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--color-secondary);
  color: #fff;
}

@media (max-width: 1040px) {
  .container { max-width: 100%; }
  header nav { max-width: 100%; }
}
@media (max-width: 900px) {
  header nav ul { gap: 7px; }
  .feature-grid { gap: 8px; }
}
@media (max-width: 820px) {
  header nav ul, header nav .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* =======================
   FOOTER
   ======================= */
footer {
  background: #fff;
  width: 100%;
  border-top: 2px solid var(--color-secondary);
  margin-top: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  flex-direction: row;
  justify-content: space-between;
}
footer nav {
  display: flex;
  gap: 16px;
}
footer nav a {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.95;
  border-radius: 6px;
  padding: 4px 10px;
  transition: background 0.16s, color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}
footer .text-section {
  flex: 1 1 230px;
  font-size: 1rem;
  color: #57687D;
  margin-left: 0;
  line-height: 1.6;
}
footer .text-section a {
  color: var(--color-hot);
  font-weight: 700;
  text-decoration: underline;
}

/* ==================
   TABLES
   ================== */
table {
  border-collapse: collapse;
  margin: 30px 0 18px 0;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px 0 rgb(30 49 79 / 7%);
}
th, td {
  padding: 16px 14px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: var(--color-secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
td {
  border-top: 1px solid #e5e8ef;
}
tr:last-child td {
  border-bottom: none;
}

/* MICRO-INTERACTIONS and EFFECTS */
button, .cta-btn {
  transition: background 0.25s cubic-bezier(.69, .14, .38, 1.14), color 0.17s, box-shadow 0.18s, border 0.17s;
}
img, .card, .feature-grid > div {
  transition: box-shadow 0.16s, transform 0.22s;
}

/* ==============================
   TESTIMONIALS / REVIEWS CARDS
   ============================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgb(30 49 79 / 12%);
  padding: 20px;
  margin-bottom: 20px;
  margin-top: 0;
  color: #1B314F;
  min-height: 88px;
  font-size: 1.14rem;
  font-family: Arial, sans-serif;
  flex-wrap: wrap;
  word-break: break-word;
  border-left: 6px solid var(--color-electric);
}
.testimonial-card p, .testimonial-card blockquote {
  flex: 1 1 70%;
  color: #1B314F;
  font-style: italic;
  margin-right: 17px;
  font-size: 1.13rem;
  font-family: Arial, sans-serif;
}
.testimonial-card span {
  color: #4E7EAB; font-weight: 700;
  font-size: 1rem;
}
.testimonial-card img {
  height: 28px;
  width: 28px;
  margin-left: 4px;
  margin-bottom: -5px;
  display: inline-block;
  vertical-align: middle;
}
.testimonial-card blockquote {
  background: none;
  border-left: 0;
  padding: 0;
  margin: 0 0 12px 0;
}

/* =============================
   ICONS IN LISTS & FEATURES
   ============================= */
ul li, ol li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  line-height: 1.5;
}
ul li img, ol li img {
  width: 22px;
  height: 22px;
  display: inline-block;
  margin-right: 7px;
  margin-top: 1px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========================
   SECTION DEFAULT STYLES
   ======================== */
section {
  margin-bottom: 60px;
  margin-top: 0;
}
section:last-child {
  margin-bottom: 0;
}

/* ========================
   COOKIES CONSENT BANNER
   ======================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 99998;
  background: #fff;
  box-shadow: 0 -2px 24px 0 rgb(30 49 79 / 19%);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 4px solid var(--color-electric);
  gap: 12px;
  transition: transform 0.29s cubic-bezier(.84,.11,.43,1.04), opacity 0.19s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #1B314F;
  margin-bottom: 10px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 6px;
}
.cookie-banner .btn {
  background: #F73382;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: 7px;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-banner .btn:hover, .cookie-banner .btn:focus {
  background: var(--color-secondary);
}
.cookie-banner .btn.secondary {
  background: #FFDD40;
  color: #1B314F;
}
.cookie-banner .btn.secondary:hover { background: #4E7EAB; color: #fff; }
.cookie-banner .btn.settings {
  background: #fff;
  color: var(--color-hot);
  border: 2px solid var(--color-hot);
}
.cookie-banner .btn.settings:hover, .cookie-banner .btn.settings:focus {
  background: var(--color-hot); color: #fff;
}

/* Cookie preferences Modal Popup */
.cookie-modal {
  display: none;
  align-items: flex-start;
  justify-content: center;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(27,49,79, 0.34);
  z-index: 99999;
  padding: 56px 10px 0 10px;
  animation: fadeIn .34s;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-window {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 32px 0 rgb(30 49 79 / 21%);
  padding: 28px 38px 22px 38px;
  min-width: 320px;
  max-width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: zoomIn .29s;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes zoomIn {
  from { transform: scale(0.85); opacity: 0; }  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 900;
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: 700;
  font-family: Arial, sans-serif;
  color: var(--color-secondary);
  font-size: 1rem;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 6px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 19px;
  font-size: 1.5rem;
  border-radius: 50%;
  background: var(--color-hot);
  color: #fff;
  padding: 2px 10px 1px 8px;
  transition: background 0.15s;
  border: none;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: var(--color-secondary);
}

input[type="checkbox"].cookie-toggle {
  width: 22px;
  height: 22px;
  border: 2px solid var(--color-electric);
  border-radius: 5px;
  margin-right: 7px;
  accent-color: var(--color-hot);
}

/* =========================
   RESPONSIVE / FLEXBOX RULES
   ========================= */
@media (max-width: 1040px) {
  .container {
    padding-left: 13px;
    padding-right: 13px;
  }
  .feature-grid > div { padding: 16px 10px; }
  .timeline > div { padding: 10px 12px; font-size: 0.95rem; }
}
@media (max-width: 820px) {
  .feature-grid { flex-direction: column; gap: 24px; }
  .feature-grid > div { min-width: 0; width: 100%; }
  .footer .container {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  html { font-size: 97.5%; }
  .hero-section { padding: 46px 0 28px 0; }
  .section, section { margin-bottom: 44px; padding: 24px 7px; }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.08rem; }
  .feature-grid, .content-grid { gap: 15px; }
  .timeline { flex-direction: column; gap: 10px; }
  .testimonial-card { flex-direction: column; gap: 10px; padding: 13px; }
  footer .container,
  .container { flex-direction: column; gap: 18px; }
  .text-image-section { flex-direction: column; gap: 18px; }
}
@media (max-width: 528px) {
  .hero-section { padding-left: 0; padding-right: 0; }
  .cta-btn { width: 100%; font-size: 1.05rem; min-width: 0; }
  .feature-grid > div { padding: 11px 5px; font-size: 0.97rem; }
  .cookie-modal-window { padding: 17px 7px 13px 11px; }
}

/* ===============
   FORMS/BUTTONS
   =============== */
input, textarea, select {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: 2px solid var(--color-secondary);
  border-radius: 9px;
  padding: 12px 14px;
  margin-bottom: 13px;
  background: #fff;
  color: #1B314F;
  outline: none;
  transition: border 0.14s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-hot);
  box-shadow: 0 0 0 3px rgb(247 51 130 / 8%);
}

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

/* ===============
   ACCESSIBILITY
   =============== */
:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

/* ===============
   TRANSITIONS
   =============== */
*, ::before, ::after {
  box-sizing: inherit;
  transition: background 0.18s, color 0.14s, border 0.14s, box-shadow 0.16s;
}
