/* -------------------
   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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  background: #fff;
  color: #233857;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.5,.5,0,1.5);
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .01em;
}


/* -----------------------------------
   BRAND COLORS & TYPOGRAPHY
--------------------------------------*/
:root {
  --primary: #233857;
  --secondary: #E5E2DD;
  --accent: #CD9F5E;
  --white: #fff;
  --black: #181B24;
  --gray: #B3B6BC;
  --danger: #D04444;
  --success: #16b87b;

  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 7px;
  --shadow-main: 0 4px 32px rgba(35,56,87,.09), 0 1.5px 7px rgba(205,159,94,.06);
  --shadow-card: 0 2px 16px rgba(35,56,87,.08);
  --shadow-hover: 0 8px 32px rgba(35,56,87,.15);
}

body {
  background: var(--secondary);
  color: var(--primary);
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* -------------------
   HEADER / NAVIGATION
---------------------*/
header {
  width: 100%;
  padding: 0;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(35,56,87,0.07);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 10px;
  padding: 16px 20px 16px 20px;
}
header img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--primary);
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.22s, color 0.20s, box-shadow 0.22s;
  position: relative;
}
nav a:hover, nav a:focus {
  color: var(--accent);
  background: var(--secondary);
  box-shadow: 0 2px 8px 0 rgba(35,56,87,0.06);
}
.cta-primary {
  background: var(--accent);
  color: var(--white) !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 17px;
  padding: 13px 34px;
  border-radius: var(--radius-lg);
  margin-left: 18px;
  box-shadow: var(--shadow-main);
  letter-spacing: 0.04em;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.17s, color 0.19s, transform 0.19s;
  text-transform: uppercase;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: var(--accent) !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-hover);
}
.cta-secondary {
  background: var(--primary);
  color: var(--accent) !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 24px;
  round: var(--radius-md);
  border-radius: var(--radius-md);
  margin-top: 18px;
  box-shadow: 0 2px 8px rgba(35,56,87,0.07);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.19s, transform 0.18s;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--accent);
  color: var(--primary) !important;
  transform: scale(1.04);
  box-shadow: var(--shadow-hover);
}

/* HAMBURGER MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--secondary);
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: background 0.22s, color 0.18s, transform 0.18s;
  margin-left: 14px;
  z-index: 90;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.08);
}

/* MOBILE SLIDE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 92vw;
  max-width: 380px;
  background: var(--secondary);
  box-shadow: -4px 0 32px rgba(35,56,87,.18);
  z-index: 999;
  transform: translateX(110%);
  transition: transform .38s cubic-bezier(.64,.05,.46,.98);
  display: flex;
  flex-direction: column;
  padding: 26px 26px 24px 24px;
  /* Will be made visible by .active class */
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  position: absolute;
  right: 24px;
  top: 20px;
  cursor: pointer;
  z-index: 1002;
  padding: 7px 10px 7px 10px;
  border-radius: 50%;
  transition: background 0.20s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: var(--accent);
}
.mobile-nav {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--primary);
  padding: 10px 0 10px 0;
  border-radius: var(--radius-md);
  transition: background 0.19s, color 0.13s;
  text-transform: uppercase;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--white);
}

/*----------------------------------
   HERO + GENERAL SECTION STYLES
-----------------------------------*/
main {
  flex: 1 1 auto;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-main);
}
.container > section,
.container > .section {
  margin-bottom: 60px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

.feature-grid,
.service-tabs,
.project-grid,
.faq-list,
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* Ensure card spacing */
.feature-grid > div, .service-tabs > div, .project-grid > div, .faq-list > div, .testimonials-list > div {
  background: var(--secondary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  flex: 1 1 295px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-grid img {
  height: 38px;
  width: 38px;
  margin-bottom: 13px;
}
.quality-badges, .project-highlights, .quote-highlights {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.quality-badges img {
  height: 43px;
  width: 43px;
}

/* Card containers */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: var(--secondary);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.testimonial-card blockquote {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Features List / Content List */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*------------------------------
  TYPOGRAPHY & HEADINGS
-------------------------------*/
h1 {
  font-size: 2.8rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.02em;
  line-height: 1.13;
  margin-bottom: 10px;
}
h2 {
  font-size: 2.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h3 {
  font-size: 1.38rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
}
p {
  font-size: 1.06rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 3px;
  line-height: 1.65;
}
ul, ol {
  margin-bottom: 3px;
}
ul li, ol li {
  font-size: 1.06rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 5px;
  padding-left: 2px;
  line-height: 1.6;
  position: relative;
}
ul li:before {
  content: '• ';
  color: var(--accent);
  font-weight: bold;
  display: inline-block;
  font-size: 1.08em;
  margin-right: 5px;
}
blockquote {
  border-left: 5px solid var(--accent);
  background: #f8f6f3;
  color: var(--primary);
  font-size: 1.13em;
  padding: 12px 20px 12px 24px;
  font-style: italic;
  border-radius: var(--radius-md);
}

/* FAQ, Info, Clipnote */
.clipnote {
  background: var(--accent);
  color: var(--white);
  font-size: 1.01rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  padding: 10px 18px;
  margin-top: 18px;
  display: inline-block;
}

.legal-text {
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(35,56,87,.07);
  margin-top: 10px;
  margin-bottom: 15px;
}
.legal-text h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 23px;
}


/*---------------------------------
   MAP SNIPPET, CONTACT DETAILS
----------------------------------*/
.map-snippet {
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius-md);
  padding: 15px 20px;
  margin: 12px 0 5px 0;
  font-size: 16px;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  min-width: 200px;
}
.opening-hours {
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius-md);
  padding: 10px 18px 12px 18px;
  box-shadow: 0 1px 4px rgba(35,56,87,.05);
}

.contact-details {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact-details ul,
.contact-details .map-snippet, .contact-details .opening-hours {
  margin-bottom: 0;
}
.contact-details ul li {
  font-size: 1.1em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-details ul li img {
  height: 22px;
  width: 22px;
}

/*-------------------
  FOOTER
-------------------*/
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 38px 0 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 24px 38px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px 16px 20px;
}
.footer-logo img {
  height: 48px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  text-decoration: none;
  color: var(--secondary);
}
.footer-contact {
  font-size: 1em;
  color: var(--secondary);
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
}
.footer-contact img {
  height: 18px;
  margin-right: 8px;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a img {
  height: 30px;
  width: 30px;
  filter: brightness(0) invert(0.8) sepia(.6) hue-rotate(24deg);
  transition: filter 0.18s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: brightness(1) invert(0.5) sepia(1) saturate(2) hue-rotate(20deg);
}
.footer-brand {
  width: 100%;
  margin-top: 12px;
  border-top: 1px solid rgba(242,242,242,.2);
  padding-top: 14px;
  color: #bdc3ce;
  text-align: center;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
}

/* --------------------------------
   RESPONSIVE DESIGN BREAKPOINTS
----------------------------------*/
@media (max-width: 1090px) {
  .container {
    max-width: 98vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .footer-brand {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 766px) {
  header .container {
    flex-direction: row;
    gap: 0;
    align-items: center;
    padding: 8px 8px 8px 8px;
  }
  nav {
    display: none !important;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding: 0 7px;
  }
  section {
    padding: 27px 5px;
    margin-bottom: 35px;
    border-radius: var(--radius-md);
  }
  h1 {
    font-size: 2.07rem;
    margin-bottom: 9px;
  }
  h2 {
    font-size: 1.6rem;
  }
  .feature-grid,
  .service-tabs,
  .project-grid,
  .faq-list,
  .testimonials-list {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper, .content-grid, .testimonials-list,
  .faq-list, .card-container, .card-grid {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .quality-badges, .project-highlights, .quote-highlights {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .testimonial-card {
    padding: 16px 7px;
    border-radius: var(--radius-sm);
  }
  .footer-contact {
    font-size: 15px;
  }
  footer .container {
    gap: 7px;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.38rem;
  }
  h2 {
    font-size: 1.19rem;
  }
  section {
    padding: 16px 4px;
  }
}

/* ------------------------------
   BUTTONS & MICROINTERACTIONS
-------------------------------*/
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08em;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  padding: 12px 28px;
  box-shadow: var(--shadow-card);
  transition: background 0.19s, color 0.15s, box-shadow 0.16s, transform 0.18s;
}
button:hover, button:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow-main);
  transform: translateY(-2px) scale(1.02);
}

/* -------------------
   CARD SPECIAL EFFECTS
---------------------*/
.card, .testimonial-card, .feature-grid > div, .service-tabs > div, .project-grid > div, .faq-list > div, .testimonials-list > div {
  transition: box-shadow 0.19s, transform 0.16s, background 0.16s;
}
.card:hover, .testimonial-card:hover, .feature-grid > div:hover, .service-tabs > div:hover, .project-grid > div:hover, .faq-list > div:hover, .testimonials-list > div:hover {
  box-shadow: var(--shadow-hover);
  background: #f5f6fb;
  transform: translateY(-3px) scale(1.02);
}

/* --------------------------------
   COOKIE CONSENT BANNER & MODAL
-----------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--primary);
  color: var(--secondary);
  padding: 18px 15px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 34px rgba(35,56,87,0.18);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  animation: slideInBanner 0.69s cubic-bezier(.63,.21,.37,1.01);
}
@keyframes slideInBanner {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-banner button {
  margin-left: 9px;
  margin-right: 9px;
  color: var(--primary);
  background: var(--accent);
  font-size: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.14s, color 0.11s, box-shadow 0.14s, transform 0.11s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--white);
  color: var(--accent);
  box-shadow: 0 3px 14px rgba(35,56,87,0.13);
  transform: scale(1.07);
}
.cookie-banner .cookie-settings-btn {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--accent);
  font-weight: 700;
  margin-right: 10px;
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--accent);
  color: var(--white);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 8px;
    font-size: 15px;
  }
  .cookie-banner button {
    margin: 7px 0 0 0;
    width: 100%;
    display: block;
  }
}

/* COOKIE CONSENT MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  background: rgba(35,56,87, 0.34);
  z-index: 10090;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(1);
  z-index: 10100;
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius-lg);
  min-width: 330px;
  max-width: 98vw;
  padding: 32px 32px 24px 32px;
  box-shadow: 0 8px 45px rgba(35,56,87,0.18);
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.06rem;
  animation: popShow 0.29s cubic-bezier(.61,.26,.38,.88);
}
@keyframes popShow {
  from {
    transform: translate(-50%,-50%) scale(0.87);
    opacity: 0;
  }
  to {
    transform: translate(-50%,-50%) scale(1);
    opacity: 1;
  }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.31em;
  font-weight: 900;
  margin-bottom: 4px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category label {
  font-weight: 700;
  margin-right: 3px;
}
.cookie-modal .toggle-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.cookie-modal input[type='checkbox'] {
  width: 36px;
  height: 22px;
  accent-color: var(--accent);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 8px 21px;
  font-size: 15px;
  font-weight: 800;
  border-radius: var(--radius-md);
}

@media (max-width: 420px) {
  .cookie-modal {
    min-width: 0;
    padding: 11vw 2vw 8vw 2vw;
  }
}

/* Hide modal & banner by default, JS should toggle .active or .show class */
.cookie-banner, .cookie-modal, .cookie-modal-backdrop {
  display: none;
}
.cookie-banner.active, .cookie-modal.show, .cookie-modal-backdrop.show {
  display: flex;
}

/*-------------------
   UTILITIES
-------------------*/
.d-none { display: none !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.w-100 { width: 100%; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mt-32 { margin-top: 32px; }
.mt-16 { margin-top: 16px; }


/* --------------------
   FORMS (future proof)
----------------------*/
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray);
  background: var(--white);
  color: var(--primary);
  margin-bottom: 18px;
  width: 100%;
  transition: border-color 0.17s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 1px 8px rgba(35,56,87,.09);
}

::selection {
  background: var(--accent);
  color: #fff4e5;
}

/* Accessibility: Focus Styles */
a:focus, button:focus, input:focus, select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  z-index: 1;
}

/* Subtle geometric shapes – (Only for style, no content overlap!) */
.section::after {
  content: '';
  display: block;
  width: 60px;
  height: 8px;
  background: var(--accent);
  border-radius: var(--radius-sm) var(--radius-lg) var(--radius-sm) var(--radius-md);
  margin: 20px 0 0 0;
}
@media (max-width: 900px) {
  .section::after { display: none; }
}

/* Bold shadow callout for CTA section */
main > section:last-of-type,
main > .section:last-of-type {
  box-shadow: 0 4px 48px rgba(205,159,94,0.12),0 1.5px 7px rgba(35,56,87,.09);
  background: var(--primary);
  color: var(--secondary);
}
main > section:last-of-type h2, main > .section:last-of-type h2,
main > section:last-of-type p, main > .section:last-of-type p {
  color: var(--secondary);
}
main > section:last-of-type .cta-primary, main > .section:last-of-type .cta-primary {
  background: var(--accent);
  color: var(--primary) !important;
}
main > section:last-of-type .cta-primary:hover,
main > .section:last-of-type .cta-primary:hover {
  background: var(--secondary);
  color: var(--accent) !important;
}

/* Prevent any card overlap, always space */
.card-container > *, .feature-grid > *, .service-tabs > *, .faq-list > *, .testimonials-list > *, .project-grid > * {
  min-width: 0;
  max-width: 100%;
}

/* Hide scrollbars for mobile menu on mobile */
.mobile-menu {
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/*--------------- END ---------------*/
