/* =======================
   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: #FAFAFA;
  color: #232323;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* =======================================
   BRAND COLORS, FONTS, CUSTOM PROPERTIES
========================================= */
:root {
  --color-primary: #17545E;
  --color-secondary: #FFFFFF;
  --color-bg: #F5F7FA;
  --color-accent: #E08D20;
  --color-accent-light: #FAAB36;
  --color-grey: #DCE0E2;
  --color-grey-dark: #748287;
  --color-border: #E0E0E0;
  --color-shadow: rgba(23, 84, 94, 0.05);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --border-radius: 16px;
  --shadow-lg: 0 8px 32px rgba(23,84,94,0.08);
  --shadow-md: 0 2px 8px rgba(23,84,94,0.07);
  --transition-fast: 0.18s cubic-bezier(.47,.47,.26,.96);
  --transition-smooth: 0.34s cubic-bezier(.47,.47,.26,.96);
}

/* =======================
   TYPOGRAPHY
======================= */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}
p, li, ul, ol, .body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #232323;
}
p {
  margin-bottom: 16px;
}
strong {
  color: var(--color-primary);
  font-weight: 600;
}
em {
  color: var(--color-accent);
}

/* =======================
   CONTAINERS & SECTION
======================= */
.container {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-secondary);
  border-radius: var(--border-radius);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.map-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* =========================
   HEADER & NAVIGATION
========================= */
header {
  width: 100%;
  background: var(--color-secondary);
  box-shadow: 0 1px 8px var(--color-shadow);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-accent);
}
.main-nav .cta-btn {
  background: var(--color-accent);
  color: #fff;
  border-radius: 24px;
  padding: 10px 30px;
  margin-left: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px var(--color-shadow);
  border: none;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}
.main-nav .cta-btn:hover,
.main-nav .cta-btn:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 2px 18px rgba(224,141,32,0.20);
}

/* =============================
   MOBILE NAVIGATION BURGER MENU
============================= */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  transition: background var(--transition-fast);
  z-index: 1001;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.47,.47,.26,.96);
  box-shadow: 0 4px 32px rgba(23,84,94,0.17);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  align-self: flex-end;
  margin: 18px 22px 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 16px;
  align-items: center;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  padding: 10px 0;
  transition: color var(--transition-fast);
  border-bottom: 2px solid transparent;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =======================
    HERO SECTION
======================= */
.hero {
  background: var(--color-primary);
  color: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0px 8px 32px rgba(23,84,94,0.08);
  padding: 60px 0 40px 0;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.hero h1, .hero .h1 {
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: -1px;
}
.hero p {
  color: #f4e9d6;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.hero .cta-btn {
  margin-top: 8px;
}

/* ==========================
   BUTTONS & CTA
========================== */
.cta-btn, .cookie-btn {
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-light));
  color: #fff;
  border: none;
  border-radius: 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 13px 32px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px rgba(224,141,32,0.08);
  cursor: pointer;
  transition: background var(--transition-smooth), color var(--transition-smooth), box-shadow var(--transition-fast);
  outline: none;
}
.cta-btn:hover, .cta-btn:focus,
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 3px 16px rgba(23,84,94,0.14);
}

/* ========================
   CARDS & OFFER BOXES
======================== */
.service-box, .card, .testimonial-card {
  background: var(--color-secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--color-grey);
  padding: 32px 28px 28px 28px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 280px;
  margin-bottom: 20px;
  position: relative;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.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;
  background: #FFF;
  color: #232323;
  box-shadow: 0 2px 12px rgba(23,84,94,0.08);
  border-left: 6px solid var(--color-accent);
  margin-bottom: 20px;
  font-size: 1.07rem;
  min-width: 0;
  max-width: 650px;
}
.testimonial-card p {
  color: #232323;
  margin-bottom: 0;
  font-size: 1rem;
  font-style: italic;
}
.testimonial-card span {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1rem;
  margin-left: 10px;
}

/* =============================
    LISTS & BULLETS
============================= */
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
  list-style: none;
}
ul li, ol li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 1rem;
}
ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 1px 4px rgba(224, 141, 32, 0.11);
}
ol li:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.90rem;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
ol {
  counter-reset: li;
}

/* ============================
     FOOTER
============================ */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 40px 0 0 0;
  border-radius: 32px 32px 0 0;
  margin-top: 60px;
}
footer .container {
  padding-top: 18px;
  padding-bottom: 12px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-brand img {
  width: 48px;
  height: 48px;
}
.footer-brand p {
  font-family: var(--font-display);
  font-weight: 500;
  color: #fff;
  font-size: 1.18rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--font-display);
  margin-top: 12px;
}
.footer-nav a {
  color: #f4e9d6;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 0;
  transition: color var(--transition-fast);
  border-bottom: 2px solid transparent;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
  font-size: 0.99rem;
}
.footer-legal a {
  color: #cfcfcf;
  transition: color var(--transition-fast);
}
.footer-legal a:hover, .footer-legal a:focus {
  color: var(--color-accent);
}
.footer-copy {
  margin-top: 14px;
  font-size: 0.96rem;
  color: #ddd;
}

/* =============================
    COOKIE CONSENT BANNER
============================= */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 11000;
  width: 100vw;
  background: #fffbea;
  box-shadow: 0 -4px 18px rgba(23,84,94,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 18px 18px 18px;
  border-top: 2px solid var(--color-accent);
  transition: transform 0.36s cubic-bezier(.47,.47,.26,.96);
  transform: translateY(0%);
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0;
}
.cookie-consent-text {
  color: #232323;
  font-size: 1rem;
  margin-bottom: 10px;
  text-align: center;
}
.cookie-btn-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
  justify-content: center;
}
.cookie-btn {
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--color-accent);
  color: #fff;
  border-radius: 28px;
  padding: 7px 24px;
  border: none;
  box-shadow: 0 2px 12px rgba(224,141,32,0.07);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.cookie-btn.reject {
  background: #232323;
  color: #fff;
}
.cookie-btn.settings {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 12000;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23,84,94,0.60);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fffdfa;
  border-radius: 24px;
  box-shadow: 0 4px 28px rgba(23,84,94,0.14);
  padding: 34px 26px 28px 26px;
  min-width: 310px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h3 {
  margin-bottom: 10px;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-grey);
  padding-bottom: 10px;
}
.cookie-category label {
  color: var(--color-primary);
  font-size: 1rem;
  flex: 1;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-accent);
  width: 20px;
  height: 20px;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 8px 24px;
}
.cookie-modal .cookie-btn:last-child {
  background: #232323;
  color: #fff;
}
@media (max-width: 768px) {
  .cookie-modal {
    padding: 18px 10px 17px 10px;
    min-width: 0;
  }
}

/* ===================
    CONTACT INFO
=================== */
.contact-info {
  background: var(--color-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 1px 7px var(--color-shadow);
  padding: 22px 20px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info a {
  color: var(--color-accent);
  font-weight: 600;
  transition: color var(--transition-fast);
}
.contact-info a:hover, .contact-info a:focus {
  color: var(--color-primary);
}

/* =======================
   MISC UTILITY CLASSES
======================= */
.text-center {
  text-align: center;
}
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-40 { margin-top: 40px !important; }
.mb-8  { margin-bottom: 8px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }

/* =============================
    ANIMATIONS & TRANSITIONS
============================= */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s cubic-bezier(.47,.47,.26,.96) forwards;
}
@keyframes fadeIn {
  100% { opacity: 1; }
}
.slide-in-right {
  transform: translateX(80px);
  opacity: 0;
  animation: slideInRight 0.5s ease-out forwards;
}
@keyframes slideInRight {
  100% { transform: translateX(0); opacity: 1; }
}
.slide-in-left {
  transform: translateX(-80px);
  opacity: 0;
  animation: slideInLeft 0.5s ease-out forwards;
}
@keyframes slideInLeft {
  100% { transform: translateX(0); opacity: 1; }
}

/* =======================
   RESPONSIVE DESIGN
======================= */
@media (max-width: 1140px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .service-box, .card, .testimonial-card {
    padding: 24px 12px 20px 12px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1, .h1 { font-size: 1.7rem; }
  h2, .h2 { font-size: 1.24rem; }
  h3, .h3 { font-size: 1.04rem; }
  .hero {
    border-radius: 0 0 24px 24px;
    box-shadow: 0px 6px 18px rgba(23,84,94,0.12);
    padding: 34px 0 18px 0;
    margin-bottom: 24px;
  }
  .section {
    margin-bottom: 30px;
    padding: 22px 8px;
    border-radius: 16px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .footer-nav, .footer-legal {
    gap: 13px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    max-width: 98vw;
    font-size: 0.99rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 16px 10px;
  }
}

/* Accessibility: Focus Styles */
a:focus, button:focus, input:focus, .cta-btn:focus, .cookie-btn:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ================= STORE THE END ===================== */
