/* === 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background: #F4F7FB;
  color: #233848;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
img {
  max-width: 100%;
  border: 0;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}

/* === BRAND FONTS & GEOMETRIC STRUCTURE === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
html {
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background: #F4F7FB;
  color: #233848;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #233848;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 24px;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, span, label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}

/* === COLOR PALLETTE === */
:root {
  --color-primary: #233848;
  --color-secondary: #1D6FA5;
  --color-accent: #F4F7FB;
  --color-light: #fff;
  --color-dark: #233848;
  --color-shadow: rgba(35, 56, 72, 0.1);
}

/* === STRUCTURE & SPACING === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-light);
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 30px;
  min-width: 260px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 2px solid #e6eaf3;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.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 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: var(--color-accent);
  box-shadow: 0 4px 24px var(--color-shadow);
  border-left: 5px solid var(--color-secondary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-light);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 10px var(--color-shadow);
  border: 2px solid #e6eaf3;
  min-width: 220px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
.feature-item:hover,
.card:hover {
  box-shadow: 0 6px 32px rgba(35, 56, 72, 0.22);
  transform: translateY(-4px) scale(1.012);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.address-block,
.business-hours,
.phone-email {
  margin-bottom: 16px;
}

/* ==== HERO SECTION ==== */
.hero {
  background: var(--color-primary);
  color: var(--color-light);
  padding: 60px 0 60px 0;
  display: flex;
  align-items: center;
  min-height: 380px;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1, .hero h2, .hero h3, .hero p, .hero strong {
  color: var(--color-light);
}
.hero a.btn-primary {
  margin-top: 20px;
}

/* === HEADER & NAVIGATION === */
header {
  background: var(--color-light);
  border-bottom: 2px solid #e6eaf3;
  box-shadow: 0 2px 16px rgba(35,56,72,0.03);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.desktop-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.desktop-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 0 6px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.2s, color 0.2s;
  color: var(--color-primary);
}
.desktop-nav a:hover, .desktop-nav a:focus {
  border-bottom: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}
.btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 32px;
  display: inline-block;
  padding: 12px 32px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.25s;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px var(--color-shadow);
}
.btn-primary {
  background: var(--color-secondary);
  color: var(--color-light);
}
.btn-primary:hover, .btn-primary:focus {
  background: #18486d;
  color: #fff;
}
.btn-secondary {
  background: var(--color-primary);
  color: var(--color-light);
  border: 2px solid var(--color-secondary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-secondary);
  color: #fff;
  border: 2px solid var(--color-secondary);
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 101;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--color-primary);
  color: #fff;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1100;
  padding: 32px 24px 24px 24px;
  transition: transform 0.35s cubic-bezier(0.5, 0, 0.3, 1);
  transform: translateX(100%);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  transition: color 0.18s, border 0.18s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}

@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 820px) {
  .feature-grid, .content-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .desktop-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .btn-primary {
    display: none;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .card {
    min-width: 0;
    width: 100%;
  }
  .section {
    margin-bottom: 32px;
    padding: 24px 6px;
  }
  .hero {
    min-height: 260px;
    padding: 38px 0;
  }
}
@media (max-width: 700px) {
  .content-wrapper {
    gap: 16px;
  }
  .testimonial-card {
    padding: 18px 10px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.1rem; }
  .hero { padding: 20px 0; }
}
@media (max-width: 480px) {
  .footer-nav { flex-direction: column; gap: 10px; align-items: flex-start; }
  .footer-contact { font-size: 0.95rem; }
}
.text-image-section {
  flex-direction: row;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* === FOOTER === */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 48px 0 24px 0;
  font-size: 1rem;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.footer-logo img {
  width: 44px;
  height: auto;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
}
.footer-contact {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #d2deeb;
  line-height: 1.4;
}
.footer-tagline {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-secondary);
  font-weight: 700;
  margin-top: 10px;
}

/* === GEOMETRIC DECORATIVE ELEMENTS === */
.feature-item, .card, .testimonial-card {
  position: relative;
  /* Optional tiny geometric icon, e.g., triangle at top-right */
}
/* example only: geometric structured underline for h2 */
h2 {
  position: relative;
  padding-bottom: 9px;
}
h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
}

/* === LISTS, UL, OL === */
ul, ol {
  margin-left: 0;
  padding-left: 0;
}
li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 26px;
  line-height: 1.7;
}
ul > li::before {
  content: "\25A0";
  color: var(--color-secondary);
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 2px;
}
ol > li::before {
  content: counter(li, decimal) ". ";
  color: var(--color-secondary);
  font-weight: bold;
  position: absolute;
  left: 0;
}
ol {
  counter-reset: li;
}
ol > li {
  counter-increment: li;
  padding-left: 35px;
}

/* === TESTIMONIALS === */
.testimonial-card {
  background: var(--color-accent);
  color: #233848;
  box-shadow: 0 2px 18px rgba(35,56,72,0.1);
  border-radius: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  font-size: 1.15rem;
  font-style: italic;
  color: #233848;
  margin-bottom: 6px;
}
.testimonial-card span strong {
  font-weight: 900;
  color: var(--color-primary);
}
.testimonial-card span {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(35,56,72,0.13);
}

/* === FORMS === */
input, textarea, select {
  padding: 10px 16px;
  background: #F4F7FB;
  border-radius: 8px;
  border: 1.5px solid #e6eaf3;
  margin-bottom: 18px;
  width: 100%;
  font-size: 1rem;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-secondary);
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 1rem;
}

/* === LINKS === */
a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: var(--color-primary);
}

/* === ICONS next to text === */
.text-section img,
p img {
  vertical-align: middle;
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-dark);
  color: #fff;
  padding: 24px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  z-index: 1200;
  box-shadow: 0 -3px 16px rgba(35,56,72,0.13);
  animation: cookieSlideUp 0.47s cubic-bezier(.79,.14,.15,.86) forwards;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-consent-banner p {
  font-size: 1rem;
  color: #fff;
  margin: 0 0 8px 0;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.cookie-consent-banner button, .cookie-buttons button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  padding: 10px 22px;
  cursor: pointer;
  margin-right: 0px;
  box-shadow: 0 1px 6px rgba(35,56,72,0.09);
  transition: background 0.2s, color 0.15s;
  margin-bottom: 0;
}
.cookie-consent-banner .accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-consent-banner .accept:hover,
.cookie-consent-banner .accept:focus {
  background: #18486d;
}
.cookie-consent-banner .reject {
  background: #fff;
  color: var(--color-dark);
  border: 2px solid var(--color-secondary);
}
.cookie-consent-banner .reject:hover,
.cookie-consent-banner .reject:focus {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-consent-banner .settings {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-consent-banner .settings:hover,
.cookie-consent-banner .settings:focus {
  background: #fff;
  color: var(--color-secondary);
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(35,56,72,0.62);
  z-index: 1400;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.3s ease-in;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes cookieModalIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  color: #233848;
  border-radius: 18px;
  padding: 34px 32px 24px 32px;
  min-width: 300px;
  max-width: 92vw;
  max-height: 80vh;
  box-shadow: 0 8px 44px rgba(35,56,72,0.17);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.5rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 14px;
  background: transparent;
  border-radius: 12px;
  border: none;
  font-size: 1.7rem;
  color: var(--color-primary);
  cursor: pointer;
  height: 40px; width: 40px;
  transition: background 0.16s;
}
.cookie-modal .modal-close:hover {
  background: #f3f3f7;
}
.cookie-modal form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-secondary);
  width: 20px; height: 20px;
  margin-right: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

/* === UTILITY CLASSES === */
.hide-mobile { display: block; }
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .footer-nav { flex-direction: column; gap: 10px; }
}

.hide-desktop { display: none !important; }
@media (max-width: 768px) {
  .hide-desktop { display: block !important; }
}

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* === MICRO-ANIMATIONS === */
.btn-primary, .btn-secondary, .feature-item, .card, .testimonial-card, .cookie-consent-banner button {
  transition: 
    box-shadow 0.22s cubic-bezier(.6,.3,.31,1), 
    transform 0.22s cubic-bezier(.6,.3,.31,1),
    background 0.18s, 
    color 0.18s;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.98);
}

/* === ACCESSIBILITY & FOCUS STATES === */
a:focus, button:focus, input:focus {
  outline: 3px solid var(--color-secondary);
  outline-offset: 3px;
}

/* === VISIBILITY HELPERS === */
.sr-only {
  position: absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* === END OF STYLES === */
