/* 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-family: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #EFF6F9;
  color: #043968;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input, button, textarea, select {
  font-family: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}

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

/* REGION: GENERAL LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px 0 rgba(4,57,104,0.07);
}

@media (max-width: 640px) {
  .section {
    padding: 25px 8px;
    margin-bottom: 32px;
    border-radius: 12px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* REGION: HEADER & NAV */
header {
  background: #043968;
  color: #fff;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 3px 16px 0 rgba(4,57,104,0.08);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #fff;
  padding: 8px 0;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #A5D0E6;
  border-bottom: 2px solid #A5D0E6;
}

.cta-btn.primary {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  background: #A5D0E6;
  color: #043968;
  border: none;
  border-radius: 32px;
  padding: 12px 36px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(165,208,230,0.10);
  margin-left: 20px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #043968;
  color: #fff;
  box-shadow: 0 4px 20px rgba(4,57,104,0.19);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 15px;
  }
  header .container {
    flex-wrap: wrap;
  }
  .cta-btn.primary {
    margin-left: 10px;
    font-size: 16px;
    padding: 10px 22px;
  }
}
@media (max-width: 768px) {
  header .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .main-nav,
  .cta-btn.primary {
    display: none;
  }
}

/* REGION: MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 19px;
  right: 23px;
  z-index: 111;
  width: 50px;
  height: 50px;
  border: none;
  background: #A5D0E6;
  color: #043968;
  font-size: 2em;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(4,57,104,0.10);
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #043968;
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #043968;
  color: #fff;
  display: flex;
  flex-direction: column;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.86,.01,.29,1.07);
  box-shadow: 0 8px 40px 2px rgba(4,57,104,0.25);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2em;
  margin: 18px 28px 10px 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1210;
}
.mobile-menu-close:hover { color: #A5D0E6; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 26px 34px;
}
.mobile-nav a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.04em;
  padding: 10px 4px;
  border-radius: 8px;
  transition: background 0.18s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A5D0E6;
  color: #043968;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav,
  .cta-btn.primary {
    display: none !important;
  }
}

/* REGION: HERO */
.hero {
  width: 100%;
  background: linear-gradient(90deg, #EFF6F9 70%, #A5D0E6 150%);
  border-radius: 0 0 32px 32px;
  margin-bottom: 32px;
  box-shadow: 0 12px 40px 4px rgba(4,57,104,0.07);
}
.hero .container {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #043968;
  margin-bottom: 12px;
}
.hero .subheadline {
  font-size: 1.33rem;
  color: #043968;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.hero .cta-btn.primary {
  margin: 0 auto 0 auto;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .hero .container {
    min-height: 170px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .subheadline {
    font-size: 1.1rem;
  }
}

/* REGION: FEATURE GRID & CARDS */
.features {
  width: 100%;
  padding: 0;
  background: transparent;
  margin-bottom: 48px;
}
.features .container {
  width: 100%;
}
.features .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.features h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #043968;
  margin-bottom: 12px;
}
.feature-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 24px 2px rgba(4,57,104,0.07);
  padding: 24px 24px 20px 24px;
  min-width: 210px;
  max-width: 260px;
  flex: 1 1 210px;
  margin-bottom: 0;
  transition: box-shadow 0.17s, transform 0.18s;
  border: 2.7px solid #EFF6F9;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
  align-self: flex-start;
}
.feature-item h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #043968;
  font-size: 1.21rem;
  margin-top: 2px;
}
.feature-item p {
  font-family: 'Roboto', Arial, sans-serif;
  color: #043968;
  font-weight: 500;
  font-size: 1rem;
}
.feature-item strong {
  color: #043968;
  font-weight: 900;
  font-size: 1.02rem;
}
.feature-item:hover,
.feature-item:focus {
  box-shadow: 0 8px 32px rgba(4,57,104,0.12);
  border: 2.7px solid #A5D0E6;
  transform: translateY(-6px) scale(1.025);
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 14px;
  }
  .feature-item {
    padding: 20px 16px 16px 16px;
    min-width: 180px;
    max-width: 95vw;
  }
}
@media (max-width: 640px) {
  .feature-grid {
    flex-wrap: wrap;
    gap: 8px;
  }
  .feature-item {
    min-width: 97vw;
    max-width: 99vw;
    border-radius: 14px;
  }
}

/* ======================== */
/* SECTION: CARDS, TESTIMONIALS, TABLES, LISTS  */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 24px 2px rgba(4,57,104,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 22px 22px 20px 22px;
  transition: box-shadow 0.15s;
  border: 2px solid #EFF6F9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover {
  box-shadow: 0 6px 36px rgba(165,208,230,0.13);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #EFF6F9;
  color: #043968;
  border-radius: 19px;
  box-shadow: 0 6px 30px rgba(4,57,104,0.10);
  padding: 26px 40px 20px 40px;
  margin-bottom: 24px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #A5D0E6;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: box-shadow 0.17s, border 0.14s, transform 0.13s;
}
.testimonial-card:hover,
.testimonial-card:focus {
  border: 2px solid #043968;
  box-shadow: 0 11px 48px 2px rgba(165,208,230,0.18);
  transform: scale(1.02);
}
.testimonial-card p {
  font-family: 'Playfair Display', serif;
  font-size: 1.11rem;
  font-weight: 700;
  color: #043968;
  text-shadow: unset;
  margin-bottom: 2px;
  text-align: center;
}
.testimonial-info {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: .97rem;
  color: #043968;
  font-weight: 600;
  margin-bottom: 0;
  opacity: 0.85;
}

/* PRICE TABLE */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Roboto', Arial, sans-serif;
  margin: 26px 0 22px 0;
  box-shadow: 0 2px 12px rgba(4,57,104,0.10);
  border-radius: 14px;
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 16px 16px;
  text-align: center;
  font-size: 1.07rem;
}
.price-table th {
  background: #A5D0E6;
  color: #043968;
  font-weight: 800;
  border-bottom: 2px solid #043968;
}
.price-table tr:nth-child(even) td {
  background: #EFF6F9;
}
.price-table td {
  color: #043968;
  font-weight: 700;
}

/* =================== */
/* CONTENT SECTIONS, SPACING & LISTS */
.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 {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 2.1rem;
  color: #043968;
  margin-bottom: 14px;
}
.text-section p,
.text-section ul {
  font-size: 1.09rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #043968;
}
.text-section ul {
  margin-left: 18px;
  margin-bottom: 4px;
}
.text-section ul li {
  margin-bottom: 9px;
  font-weight: 500;
  list-style: disc inside;
}
.address-details {
  background: #A5D0E6;
  color: #043968;
  border-radius: 9px;
  padding: 16px 16px;
  margin: 14px 0 0 0;
  font-size: 1rem;
}
.address-details strong {
  font-weight: 800;
}

.menu-highlights {
  background: #EFF6F9;
  border-radius: 11px;
  padding: 10px 15px;
  margin: 13px 0 18px 0;
  font-weight: bold;
}
.menu-highlights ul {
  margin-left: 18px;
}
.pricing {
  font-size: 1.17rem;
  color: #043968;
  font-weight: bold;
  margin: 12px 0 18px 0;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 12px 0;
  flex-direction: row;
}
.service-item {
  background: #A5D0E6;
  color: #043968;
  padding: 22px 30px 18px 30px;
  border-radius: 14px;
  box-shadow: 0 3px 16px rgba(4,57,104,0.11);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.015rem;
  font-weight: 600;
  flex: 1 1 230px;
}
.service-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: #043968;
  margin-bottom: 8px;
}

@media (max-width: 850px) {
  .service-list {
    flex-wrap: wrap;
    gap: 10px;
  }
  .service-item {
    padding: 18px 13px 13px 13px;
    min-width: 130px;
    max-width: 97vw;
  }
}

/* ===================  */
/* Buttons & Links      */
.cta-btn,
.button,
button,
input[type="submit"] {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 12px 36px;
  border-radius: 32px;
  border: none;
  transition: background 0.16s, color 0.13s, box-shadow 0.17s, transform 0.16s;
  box-shadow: 0 4px 16px 0 rgba(165,208,230,0.14);
  cursor: pointer;
  outline: none;
}
.cta-btn:active {
  transform: scale(0.97);
}
.cta-btn.primary {
  background: #A5D0E6;
  color: #043968;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #043968;
  color: #fff;
  box-shadow: 0 8px 34px 2px rgba(4,57,104,0.18);
}
.cta-btn.secondary {
  background: #fff;
  color: #043968;
  border: 2px solid #A5D0E6;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #A5D0E6;
  color: #043968;
  border: 2px solid #043968;
}
.button-outlined {
  background: transparent;
  color: #043968;
  border: 2px solid #A5D0E6;
  padding: 10px 28px;
}
.button-outlined:hover, .button-outlined:focus {
  background: #A5D0E6;
  color: #043968;
  border-color: #043968;
  box-shadow: 0 8px 20px 2px rgba(165,208,230,0.20);
}

/* ==================  */
/* FOOTER              */
footer {
  background: #fff;
  color: #043968;
  padding-top: 32px;
  padding-bottom: 22px;
  border-top: 3px solid #A5D0E6;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #043968;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 2.5px solid transparent;
  padding-bottom: 2px;
  transition: border 0.13s, color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #A5D0E6;
  border-bottom: 2.5px solid #043968;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.contact-details span {
  color: #043968;
}
.copyright {
  font-size: .93rem;
  color: #A5D0E6;
  margin-top: 8px;
  text-align: center;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .footer-nav {
    gap: 13px;
  }
  .contact-details {
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }
}

/* ===================  */
/* RESPONSIVE FLEX DIRECTION RULES */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
  }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
  }
  .testimonial-card {
    padding: 18px 8px 17px 8px;
    max-width: 99vw;
    border-radius: 12px;
  }
  .price-table th, .price-table td {
    padding: 8px 4px;
    font-size: .92rem;
  }
  .service-list {
    flex-direction: column;
    gap: 9px;
  }
}

/* ===================  */
/* GEOMETRIC/DECORATIVE SHAPES (SUBTLE) */
.hero::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0; right: 0;
  width: 120px;
  height: 44px;
  background: #A5D0E6;
  border-radius: 55px 0 0 0;
  opacity: 0.18;
  z-index: 0;
}
@media (max-width: 640px) {
  .hero::after {
    width: 80px; height: 32px;
  }
}

/* ===================  */
/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #043968;
  color: #fff;
  padding: 22px 28px;
  box-shadow: 0 -4px 30px 2px rgba(4,57,104,0.21);
  z-index: 2221;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, sans-serif;
  justify-content: center;
  animation: cookie-popup-in 0.5s cubic-bezier(.43,.35,.32,1.45);
}
@keyframes cookie-popup-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  border-radius: 24px;
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.18s, color 0.13s;
}
.cookie-banner .accept {
  background: #A5D0E6;
  color: #043968;
}
.cookie-banner .accept:hover { background: #fff; color: #043968; }
.cookie-banner .reject {
  background: #fff;
  color: #043968;
  border: 2px solid #A5D0E6;
}
.cookie-banner .reject:hover { background: #A5D0E6; color: #043968; }
.cookie-banner .settings {
  background: transparent;
  border: 2px solid #A5D0E6;
  color: #A5D0E6;
}
.cookie-banner .settings:hover {
  background: #A5D0E6;
  color: #043968;
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    padding: 15px 4px;
    gap: 12px;
    font-size: 0.95rem;
  }
  .cookie-banner .banner-buttons {
    gap: 6px;
  }
}

.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.99);
  background: #fff;
  color: #043968;
  border-radius: 26px;
  box-shadow: 0 12px 80px 2px rgba(4,57,104,0.20);
  padding: 34px 40px 28px 40px;
  z-index: 2230;
  min-width: 320px;
  max-width: 95vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s, transform 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1.03);
}
.cookie-modal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #043968;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #A5D0E6;
  border-radius: 14px;
  padding: 12px 20px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category.essential {
  opacity: 0.7;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  color: #043968;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #043968;
  width: 22px;
  height: 22px;
}
.cookie-modal .cookie-description {
  font-size: 0.99rem;
  margin-top: 6px;
  color: #043968;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.cookie-modal .modal-buttons button {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 20px;
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.18s, color 0.13s;
}
.cookie-modal .save {
  background: #043968;
  color: #fff;
}
.cookie-modal .save:hover {
  background: #A5D0E6;
  color: #043968;
}
.cookie-modal .close {
  background: transparent;
  color: #043968;
  border: 2px solid #A5D0E6;
}
.cookie-modal .close:hover {
  background: #A5D0E6;
  color: #043968;
}
@media (max-width: 540px) {
  .cookie-modal {
    padding: 16px 5vw;
    border-radius: 14px;
  }
}

/* ===================  */
/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #043968;
}
h1 { font-size: 2.55rem; margin-bottom: 18px; line-height: 1.18; }
h2 { font-size: 2rem; margin-bottom: 10px; line-height: 1.15; }
h3 { font-size: 1.325rem; margin-bottom: 8px; line-height: 1.18; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p, li {
  font-size: 1.09rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #043968;
  font-weight: 500;
}
strong {
  font-weight: bold;
  color: #043968;
}
em {
  font-style: italic;
  color: #043968;
}

@media (max-width: 768px) {
h1 { font-size: 2rem; }
h2 { font-size: 1.44rem; }
h3 { font-size: 1.15rem; }
}

/* ===================  */
/* UTILITY CLASSES     */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }
.rounded-xxl { border-radius: 32px !important; }
.rounded-lg { border-radius: 16px !important; }

/* ===================  */
/* FORM ELEMENTS       */
input[type="text"], input[type="email"], textarea {
  background: #EFF6F9;
  border: 2px solid #A5D0E6;
  color: #043968;
  padding: 13px 16px;
  border-radius: 14px;
  font-size: 1rem;
  margin-bottom: 18px;
  width: 100%;
  max-width: 480px;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border 0.14s, box-shadow 0.12s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border: 2px solid #043968;
  outline: none;
  box-shadow: 0 1px 7px rgba(165,208,230,0.11);
}
textarea {
  min-height: 88px;
  max-width: 560px;
}

/* ===================  */
/* SCROLLBAR STYLING   */
html {
  scrollbar-width: thin;
  scrollbar-color: #043968 #A5D0E6;
}
::-webkit-scrollbar {
  width: 8px;
  background: #EFF6F9;
}
::-webkit-scrollbar-thumb {
  background: #A5D0E6;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #043968;
}

/* ===================  */
/* ANIMATION & MICROINTERACTIONS */
.cta-btn.primary,
.button, .feature-item, .testimonial-card, .service-item {
  transition: outline 0.12s, box-shadow 0.18s, background 0.12s, color 0.12s, border 0.13s, transform 0.14s;
}
.cta-btn:focus, .feature-item:focus, .testimonial-card:focus {
  outline: 2.5px solid #A5D0E6;
  outline-offset: 2px;
  background: #EFF6F9;
}

/* ===============  */
/* Z-INDEX MGMT     */
header { z-index: 99; }
.mobile-menu { z-index: 1200; }
.cookie-banner, .cookie-modal { z-index: 2221; }

/* ===============  */
/* ACCESSIBILITY    */
:root {
  --focus-outline-color: #A5D0E6;
}
*:focus {
  outline: 2px solid var(--focus-outline-color);
  outline-offset: 1px;
}

/* ===================  */
/* REMOVE UNWANTED OVERLAPS */
.card, .feature-item, .testimonial-card, .service-item {
  box-sizing: border-box;
  margin-bottom: 20px;
}
.section, .card, .feature-item, .testimonial-card {
  margin-bottom: 24px;
}

/* ===================  */
/* ENSURE NO UNWANTED ABSOLUTE POS FOR CONTENT CARDS */
.card, .feature-item, .testimonial-card {
  position: relative;
}

/* ===================  */
/* FLEX GAP SUPPORT POLYFILL (for older browsers) */
@supports not (gap: 20px) {
  .feature-grid > * { margin-right: 20px; margin-bottom: 20px; }
}

/* END OF CSS */
