/* ===== 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
:root {
  --color-primary: #235D3A;
  --color-secondary: #0D2436;
  --color-accent: #F7F6EF;
  --color-bg: #151C21;
  --color-metal: #6c757d;
  --color-text: #F7F6EF;
  --color-card-bg: #22282e;
  --color-card-border: #3A444C;
  --color-shadow: rgba(18,30,38,0.13);
  --color-cta-hover: #30835a;
  --color-link: #89DBB1;
  --color-focus: #E7B75E;
  --color-light-text: #bfc8ce;
  --radius: 12px;
  --shadow:
    0 2px 8px 0 rgba(18,30,38,0.15),
    0 1.5px 5px 0 rgba(66,82,95,0.07);
  --font-display: 'Montserrat', 'Arial Black', 'Arial', sans-serif;
  --font-body: 'Roboto', 'Segoe UI', Arial, sans-serif;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: var(--color-link);
  text-decoration: none;
  transition: color .2s cubic-bezier(.68,-0.6,.32,1.6);
}
a:hover, a:focus {
  color: var(--color-cta-hover);
  outline: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.13;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}
h1 { font-size: 2.2rem; margin-bottom: 16px; }
h2 { font-size: 1.7rem; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p, ul, ol { margin-bottom: 18px; }
.text-section ul, .text-section ol,
.content-wrapper ul, .content-wrapper ol {
  padding-left: 24px;
  margin-bottom: 24px;
  color: var(--color-light-text);
}
ul li, ol li {
  margin-bottom: 8px;
}
strong { font-weight: 700; }

/* ====== BRAND CONTAINERS & GENERAL LAYOUT ====== */
.container {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* ===== BUTTONS & CTAS ===== */
.cta-button, .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow .2s;
}
.cta-button {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 12px 32px;
  border: none;
  box-shadow: var(--shadow);
  font-size: 1rem;
  border: 1.5px solid var(--color-metal);
  text-transform: uppercase;
}
.cta-button.primary {
  background: var(--color-primary);
  color: var(--color-accent);
}
.cta-button:not(:disabled):hover,
.cta-button:focus {
  background: var(--color-cta-hover);
  color: var(--color-accent);
  box-shadow: 0 4px 12px 0 rgba(35,93,58,0.18);
  border-color: var(--color-focus);
}
.cta-link {
  color: var(--color-link);
  border-bottom: 1.5px dotted var(--color-link);
  background: none;
  padding: 0 0 2px 0;
  font-size: 1.01rem;
}
.cta-link:hover, .cta-link:focus {
  color: var(--color-cta-hover);
  border-bottom: 1.5px solid var(--color-cta-hover);
  background: none;
}

/* ===== HEADER NAVIGATION & LOGO ===== */
header {
  background: var(--color-secondary);
  box-shadow: 0 2px 8px 0 var(--color-shadow);
  border-bottom: 2px solid var(--color-metal);
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 0;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
}
nav.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  margin-left: 20px;
}
nav.main-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 6px;
  position: relative;
  transition: background .16s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: var(--color-metal);
  color: var(--color-accent);
}

.cta-button.primary {
  margin-left: 24px;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: var(--color-accent);
  border: none;
  font-size: 2rem;
  border-radius: var(--radius);
  padding: 6px 16px;
  cursor: pointer;
  margin-left: auto;
  z-index: 120;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-cta-hover);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-secondary);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.75,0,.15,1);
  box-shadow: 2px 0 22px 0 rgba(0,0,0,0.19);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--color-accent);
  font-size: 2.2rem;
  border: none;
  padding: 18px 18px 12px;
  align-self: flex-end;
  cursor: pointer;
}
nav.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 18px 30px;
  gap: 18px;
}
nav.mobile-nav a {
  color: var(--color-accent);
  background: none;
  padding: 12px 0;
  font-size: 1.16rem;
  font-family: var(--font-display);
  font-weight: 500;
  border-radius: var(--radius);
  transition: background .13s, color.13s;
}
nav.mobile-nav a:hover, nav.mobile-nav a:focus {
  background: var(--color-metal);
  color: var(--color-accent);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(to bottom right, #13191e 60%, #235D3A 100%);
  min-height: 320px;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.hero .container, .hero .content-wrapper {
  height: 100%;
  justify-content: center;
}
.hero h1 {
  color: var(--color-accent);
  font-size: 2.5rem;
  margin-bottom: 18px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.hero p {
  color: var(--color-light-text);
  font-size: 1.17rem;
  margin-bottom: 24px;
}

/* ===== FEATURES, CARDS, SERVICES ===== */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid, .region-overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.feature, .region {
  background: var(--color-card-bg);
  color: var(--color-light-text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--color-card-border);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 260px;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow .15s,border-color .2s;
}
.feature:hover, .region:hover {
  box-shadow: 0 6px 22px 0 rgba(35,93,58,0.17);
  border-color: var(--color-primary);
}
.feature img, .region img {
  height: 42px;
  margin-bottom: 6px;
  filter: grayscale(30%) contrast(1.3) brightness(1);
}
.feature h3, .region h3 {
  font-size: 1.25rem;
  color: var(--color-accent);
  font-family: var(--font-display);
  margin-bottom: 8px;
}

/* ===== COMMON FLEXBOX PATTERNS ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--color-card-border);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
  padding: 22px 20px 18px 24px;
  transition: box-shadow .16s, border-color .19s;
}
.card:hover {     
  box-shadow: 0 7px 30px 0 rgba(35,93,58,0.17);
  border-color: var(--color-primary);
}
.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(--color-accent);
  color: var(--color-secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--color-card-border);
  margin-bottom: 20px;
}
.testimonial-content > p {
  color: var(--color-secondary);
  font-style: italic;
  font-size: 1.11rem;
}
.testimonial-meta {
  color: var(--color-secondary);
  font-size: 1rem;
  font-weight: 501;
  margin-top: 10px;
  font-family: var(--font-body);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-top: 7px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Testimonial Preview Section Contrast Fix */
.testimonial-preview .testimonial-card {
  background: var(--color-accent);
  color: var(--color-secondary);
  border-color: var(--color-card-border);
}

.featured-review {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 20px;
  margin-top: 24px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.09rem;
  box-shadow: var(--shadow);
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 15px;
}
.trust-badges img {
  height: 34px;
  width: auto;
  opacity: .95;
}

/* ====== CARD & LISTS ====== */
.experience-highlights, .success-stories, .local-insights {
  background: var(--color-card-bg);
  color: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--color-card-border);
  padding: 20px 22px 18px 24px;
  margin-bottom: 18px;
}

/* ===== CONTACT, ADDRESS & FORMS ===== */
.contact-section,
.contact-form-section {
  background: var(--color-secondary);
  border-radius: var(--radius);
  padding: 40px 20px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}
.contact-section .text-section p,
.contact-form-section .text-section p {
  color: var(--color-light-text);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 42px;
  margin-top: 20px;
  color: var(--color-light-text);
  font-size: .97rem;
  align-items: center;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--color-secondary);
  color: var(--color-accent);
  border-top: 2px solid var(--color-metal);
  box-shadow: 0 -2px 8px 0 var(--color-shadow);
  padding: 32px 0 0;
  margin-top: 40px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
}
.logo-footer img {
  height: 38px;
}
nav.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
nav.footer-nav a {
  color: var(--color-accent);
  font-size: 1rem;
  opacity: 0.9;
}
nav.footer-nav a:hover,
nav.footer-nav a:focus {
  color: var(--color-primary);
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--color-card-bg);
  color: var(--color-accent);
  box-shadow: 0 -3px 16px 0 rgba(13,36,54,0.19);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  padding: 26px 18px 26px 26px;
  z-index: 3001;
  font-size: 1rem;
  transition: transform .36s;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  margin-left: auto;
  align-items: center;
}
.cookie-banner .cookie-btn {
  background: var(--color-primary);
  color: var(--color-accent);
  border: none;
  border-radius: var(--radius);
  padding: 9px 22px;
  font-family: var(--font-display);
  font-size: 1rem;
  cursor: pointer;
  transition: background .19s;
  margin-right: 3px;
}
.cookie-banner .cookie-btn:last-child { margin-right: 0; }
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--color-cta-hover);
  color: var(--color-accent);
}
.cookie-banner .cookie-btn.reject {
  background: #353C44;
  color: #f7f6ef;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #222933;
}
.cookie-banner .cookie-btn.settings {
  background: var(--color-metal);
  color: var(--color-accent);
}
.cookie-banner .cookie-btn.settings:hover {
  background: #7a868e;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}

/* ===== COOKIE MODAL POPUP ===== */
.cookie-modal-bg {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 3100;
  background: rgba(13,36,54,0.72);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookieModalFadeIn .28s;
}
@keyframes cookieModalFadeIn {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal {
  background: var(--color-card-bg);
  color: var(--color-accent);
  border-radius: var(--radius);
  min-width: 320px;
  max-width: 97vw;
  box-shadow: var(--shadow), 0 12px 42px 0 rgba(34,88,58,.17);
  padding: 36px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  color: var(--color-accent);
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.01rem;
}
.cookie-toggle {
  accent-color: var(--color-primary);
  width: 18px; height: 18px;
}
.cookie-category-essential label { opacity: 0.6; font-weight: 700; }
.cookie-category-essential input[type=checkbox] {
  accent-color: var(--color-primary);
}

/* ====== RESPONSIVE MEDIA QUERIES ====== */
@media (max-width: 1060px) {
  .container {
    max-width: 98vw;
  }
  nav.main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  header .container {
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
  }
  footer .container {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
}
@media (max-width: 760px) {
  :root {
    --radius: 10px;
  }
  nav.main-nav, .cta-button.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .container, .footer-contact, .feature-grid, .region-overview-grid,
  .card-container, .content-grid {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch !important;
  }
  .hero h1 { font-size: 2rem; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; }
  .section, .features, .contact-section, .contact-form-section {
    padding: 24px 10px;
    margin-bottom: 36px;
  }
  .testimonial-card,
  .feature, .region, .card {
    padding: 14px 12px 14px 14px;
    min-width: 0;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 550px) {
  .hero { padding-top: 30px; padding-bottom: 30px; }
  .cookie-banner { flex-direction: column; gap: 16px; align-items: stretch; }
  .footer-contact {
    flex-direction: column;
    gap: 12px !important;
  }
}
@media (max-width: 389px) {
  .cookie-banner { padding: 12px 6px 12px 6px; }
  .cookie-modal { padding: 7vw 2vw; }
  .hero { padding: 14px 0; }
}

/* ===== UTILITIES ===== */
.show { display: block !important; }
.sr-only { position: absolute !important; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ===== MICRO-INTERACTIONS ===== */
.cta-button, .card, .feature, .region, .testimonial-card, .cookie-btn, .cta-link {
  transition: box-shadow 0.17s, background 0.17s, color 0.16s, border 0.17s, transform 0.16s;
}
.card:active, .feature:active, .cta-button:active, .testimonial-card:active {
  transform: translateY(2px) scale(0.991);
}

/* ===== OTHER ATOMIC CLASSES ===== */
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }

/* ===== INDUSTRIAL MODERN ACCENTS ===== */
.card, .feature, .region, .testimonial-card {
  border: 1.5px solid var(--color-card-border);
  box-shadow: var(--shadow);
  background-clip: padding-box;
  background-image:
    linear-gradient(120deg, rgba(255,255,255,0.03), rgba(35,93,58,0.045)),
    repeating-linear-gradient(45deg, rgba(204,204,204,0.03) 0px, rgba(99,142,138,0.033) 3.5px, transparent 3.5px, transparent 7px);
}
.card:after, .feature:after, .region:after, .testimonial-card:after {
  content: '';
  display: none;
}

/* ====== THANK YOU/CUSTOM SECTIONS ====== */
.thank-you-section .text-section ul {
  color: var(--color-accent);
  margin-bottom: 14px;
}
.cta-links {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/************
  END CSS
************/
