/* =====================================
   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.5;
  -webkit-font-smoothing: antialiased;
  background: #F8F4EF;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  border: none;
  background: none;
  outline: none;
}
button {
  cursor: pointer;
  background: none;
}

/* =====================================
   FONT FACES (RETRO/VINTAGE SELECTION)
   ===================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
/* For a retro accent, use Cormorant Garamond for headings where appropriate */
@import url('https://fonts.googleapis.com/css?family=Cormorant+Garamond:700&display=swap');

:root {
  --primary: #224056;
  --secondary: #B8C7D1;
  --accent: #F5F7FA;
  --retro-yellow: #FFE181;
  --retro-red: #D93943;
  --retro-blue: #568EA3;
  --retro-orange: #FFB25E;
  --retro-green: #D6D98D;
  --retro-brown: #867665;
  --black: #22211D;
  --white: #FFFDF7;
  --grey: #E5E0D3;
  --card-border: #DBD2B9;
  --shadow: 0 4px 20px rgba(34,34,28,0.10);
  --radius: 12px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing: 24px;
  --spacing-lg: 32px;
  --transition: .3s cubic-bezier(.71,.19,.21,.88);
  --font-display: 'Montserrat', 'Cormorant Garamond', serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--accent);
  color: var(--black);
  font-size: 16px;
}

/* ====================
   LAYOUT CONTAINERS
   ==================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* ====================
   HEADER & NAVIGATION
   ==================== */
header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(34,34,28,0.07);
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 6px;
  position: relative;
  transition: background var(--transition), color var(--transition);
}
header nav a:hover, header nav a:focus {
  background: var(--retro-yellow);
  color: var(--retro-red);
}
.cta-btn {
  background: var(--retro-red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  padding: 10px 32px;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(34, 64, 86, 0.12);
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 1px;
  outline: none;
  border: none;
  margin-left: 8px;
}
.cta-btn.secondary {
  background: var(--retro-blue);
  color: var(--white);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--retro-orange);
  color: var(--black);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(88,99,80,0.16);
}

/* ====================
   RETRO/VINTAGE STYLING
   ==================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--primary);
  letter-spacing: .5px;
  font-weight: 900;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  line-height: 1.18;
  text-shadow: 1px 2px 0 var(--retro-yellow);
  font-family: 'Cormorant Garamond', var(--font-display);
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
  color: var(--retro-red);
  font-family: 'Cormorant Garamond', var(--font-display);
}
h3 {
  font-size: 1.2rem;
  color: var(--retro-blue);
  font-family: var(--font-display);
}
.subheadline {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 20px;
  opacity: 0.85;
}
strong {
  color: var(--retro-red);
  font-weight: 700;
}

/* Retro patterns & borders */
.section, .service-card, .testimonial-card, .feature, .about-features-list li, .service-detail, .faq-list ul li, .onsite-services-list li, .terms-and-conditions-text ul li, .privacy-policy-text ul li, .user-rights ul li {
  border-radius: var(--radius);
  border: 1.5px solid var(--card-border);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: repeating-linear-gradient(135deg, var(--accent) 0px, var(--accent) 28px, #f2e8d6 28px, #f2e8d6 56px);
}

/* Dotted retro corner accent */
.section, .hero {
  position: relative;
}
.section:before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle, var(--retro-yellow) 7px, transparent 7px) 0 0/20px 20px repeat;
  opacity: 0.18;
  pointer-events: none;
  border-top-left-radius: var(--radius);
  z-index: 0;
}

/* ====================
   HERO SECTION
   ==================== */
.hero {
  background: var(--retro-yellow);
  background-image: repeating-linear-gradient(135deg, var(--retro-yellow) 0px, var(--retro-yellow) 18px, #FFFCEB 18px, #FFFCEB 36px);
  padding: 60px 0 40px 0;
  text-align: center;
  border-bottom: 5px solid var(--retro-red);
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 2;
}

/* ====================
   FEATURES & CARDS
   ==================== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature {
  flex: 1 1 210px;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  background: var(--accent);
  border: 2px solid var(--retro-blue);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  margin-top: 8px;
  transition: box-shadow var(--transition), transform var(--transition), border var(--transition);
}
.feature img {
  width: 48px; height: 48px;
  margin-bottom: 12px;
}
.feature:hover {
  border: 2px solid var(--retro-orange);
  box-shadow: 0 8px 32px rgba(219,57,67,0.11);
  transform: scale(1.03) translateY(-4px);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.service-card {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 290px;
  margin-bottom: 20px;
  background: var(--retro-green);
  border: 2px solid var(--retro-brown);
  color: var(--black);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  transition: border var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  z-index: 1;
}
.service-card h3 {
  color: var(--retro-red);
  font-size: 1.2rem;
}
.service-card span {
  font-weight: 700;
  color: var(--retro-red);
  background: var(--retro-yellow);
  padding: 2px 12px;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 8px;
}
.service-card:hover {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 32px rgba(34,64,86,0.13);
  transform: scale(1.022) translateY(-3px);
}

.services-list-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.service-detail {
  flex: 1 1 270px;
  min-width: 240px;
  max-width: 330px;
  margin-bottom: 20px;
  background: var(--white);
  border: 2px dashed var(--retro-blue);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.service-detail h2 {
  font-size: 1.3rem;
  color: var(--retro-red);
  margin: 0 0 4px;
}
.service-detail span {
  background: var(--retro-yellow);
  color: var(--black);
  border-radius: 8px;
  padding: 2px 8px;
  font-weight: 700;
  font-size: 0.98rem;
  align-self: flex-start;
}

/* For All Card Containers (generic) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 32px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  min-width: 230px;
  flex: 1 1 260px;
  transition: box-shadow var(--transition), border var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(88,99,80,0.17);
  border: 2px solid var(--retro-yellow);
  transform: scale(1.016) translateY(-3px);
}

/* ====================
   TESTIMONIALS
   ==================== */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--accent);
  border: 1.5px solid var(--retro-yellow);
  border-radius: var(--radius);
  padding: 20px;
  gap: 12px;
  min-width: 225px;
  max-width: 350px;
  margin-bottom: 20px;
  color: #2D211A;
  box-shadow: 0 2px 8px rgba(34,34,28,0.07);
  font-size: 1rem;
  transition: box-shadow var(--transition), border var(--transition), transform var(--transition);
}
.testimonial-card p {
  font-family: var(--font-body);
  color: #2D211A;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  display: inline-block;
  margin-right: 6px;
  letter-spacing: 0.5px;
}
.testimonial-card:hover {
  border: 1.5px solid var(--retro-orange);
  box-shadow: 0 8px 24px rgba(219,57,67,0.08);
  transform: scale(1.02);
}

/* ====================
   TABLE PRICING
   ==================== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pricing-table thead {
  background: var(--retro-yellow);
}
.pricing-table th, .pricing-table td {
  padding: 14px 10px;
  font-size: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--grey);
}
.pricing-table th {
  font-family: var(--font-display);
  color: var(--primary);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tbody td {
  color: var(--primary);
}

/* ====================
   CUSTOM LISTS & DETAILS
   ==================== */
.features-promises, .about-features-list, .quality-promise-list, .onsite-services-list, .faq-list ul, .terms-and-conditions-text ul, .privacy-policy-text ul, .user-rights ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 14px;
}
.features-promises li, .about-features-list li, .quality-promise-list li, .onsite-services-list li, .faq-list ul li, .terms-and-conditions-text ul li, .privacy-policy-text ul li, .user-rights ul li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 14px 18px;
  gap: 12px;
  border: 1.2px solid var(--retro-blue);
  box-shadow: 0 2px 6px rgba(34,34,28,0.06);
  margin-bottom: 0;
}
.features-promises li img, .about-features-list li img, .onsite-services-list li img {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}
.certifications-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 14px;
}
.certifications-awards p {
  display: flex;
  align-items: center;
  background: var(--retro-green);
  border-radius: 13px;
  padding: 8px 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0;
}
.certifications-awards img {
  width: 28px;
  height: 28px;
  margin-right: 12px;
}

/* ====================
   CONTENT GRIDS
   ==================== */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ====================
   CONTACT & MAP
   ==================== */
.quick-contact, .contact-details-full, .contact-details, .mini-contact-form, .map-embed {
  margin-bottom: 18px;
}
.contact-details p, .contact-details-full p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.contact-details img, .contact-details-full img {
  width: 30px;
  height: 30px;
}
.mini-contact-form, .map-embed {
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius);
  padding: 18px 15px;
  margin-top: 12px;
  border: 1.5px solid var(--retro-yellow);
  font-size: 1rem;
  font-weight: 400;
}

/* ====================
   FOOTER
   ==================== */
footer {
  background: var(--retro-blue);
  color: var(--white);
  padding: 32px 0 18px 0;
  font-size: 1rem;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: var(--retro-yellow);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .5px;
  transition: color var(--transition), text-decoration var(--transition);
}
footer nav a:hover, footer nav a:focus {
  color: var(--retro-red);
  text-decoration: underline dotted;
}
footer p {
  font-size: 0.95rem;
  margin-top: 6px;
  opacity: 0.89;
}
footer img {
  width: 52px;
  height: auto;
  margin-bottom: 0;
}

/* ====================
   THANK YOU
   ==================== */
.thankyou-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--retro-yellow);
  border-radius: var(--radius);
  border: 2.5px double var(--retro-brown);
  text-align: center;
  box-shadow: var(--shadow);
}
.thankyou-section h1 {
  color: var(--retro-red);
  text-shadow: 2px 1.5px 0 #FFE18185;
}
.thankyou-section .thank-you-message {
  margin-bottom: 26px;
  font-size: 1.08rem;
  color: var(--primary);
}

/* ====================
   MOBILE MENU
   ==================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px; top: 16px;
  z-index: 30;
  background: var(--retro-red);
  color: var(--white);
  border-radius: 50%;
  border: none;
  width: 42px; height: 42px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(219,57,67,0.11);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-blue);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--retro-yellow);
  box-shadow: 0 4px 32px rgba(34,64,86,0.15);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.86,0,.07,1);
  opacity: 0.97;
  padding-top: 50px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  right: 22px;
  top: 14px;
  background: var(--retro-red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 400;
  transition: background var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 44px;
  align-items: center;
  width: 100%;
}
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  background: var(--retro-blue);
  color: var(--white);
  font-size: 1.18rem;
  padding: 14px 30px;
  border-radius: var(--radius);
  width: 80vw;
  text-align: center;
  margin: 0 auto;
  transition: background var(--transition), transform var(--transition), color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-orange);
  color: var(--retro-red);
  transform: scale(1.04);
}
@media (max-width: 1080px) {
  header .container nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Make sure desktop menu is visible for large screens */
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  header nav {
    display: flex !important;
  }
  .cta-btn {
    display: inline-block !important;
  }
}

/* ====================
   COOKIE CONSENT BANNER
   ==================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--retro-yellow);
  color: var(--primary);
  z-index: 5000;
  width: 100vw;
  box-shadow: 0 -5px 32px rgba(88,99,80,.13);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  font-size: 1.1rem;
  gap: 26px;
  border-top: 2.5px solid var(--retro-red);
  transition: transform var(--transition), opacity var(--transition);
  animation: slideBannerIn 0.4s ease forwards;
}
@keyframes slideBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0%); opacity: 1; }
}
.cookie-banner__btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  outline: none;
  border-radius: var(--radius);
  padding: 10px 18px;
  margin: 0 6px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 9px rgba(219,57,67,0.1);
}
.cookie-banner__btn.accept {
  background: var(--retro-red);
  color: var(--white);
}
.cookie-banner__btn.accept:hover, .cookie-banner__btn.accept:focus {
  background: var(--retro-orange);
  color: var(--primary);
}
.cookie-banner__btn.reject {
  background: var(--retro-blue);
  color: var(--white);
}
.cookie-banner__btn.reject:hover, .cookie-banner__btn.reject:focus {
  background: var(--retro-yellow);
  color: var(--retro-red);
}
.cookie-banner__btn.settings {
  background: var(--retro-green);
  color: var(--primary);
}
.cookie-banner__btn.settings:hover, .cookie-banner__btn.settings:focus {
  background: var(--retro-brown);
  color: var(--white);
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34, 64, 86, 0.84);
  z-index: 6000;
  align-items: center;
  justify-content: center;
  animation: overlay-fade-in 0.33s linear forwards;
  transition: opacity var(--transition);
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes overlay-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  color: var(--black);
  border-radius: 18px;
  min-width: 300px;
  max-width: 450px;
  width: 92vw;
  box-shadow: 0 10px 48px rgba(34,64,86,0.18);
  padding: 30px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalPopIn 0.35s cubic-bezier(.86,0,.07,1);
}
@keyframes modalPopIn {
  from { transform: scale(0.89) translateY(70px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: var(--retro-red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 20;
}
.cookie-modal .modal-close:hover {
  background: var(--retro-blue);
}
.cookie-modal h3 {
  font-size: 1.22rem;
  color: var(--retro-red);
  margin-bottom: 6px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.06rem;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--accent);
  border-radius: 9px;
  padding: 9px 12px;
  border: 1px solid var(--retro-blue);
}
.cookie-modal-category.essential {
  background: var(--retro-yellow);
  color: var(--black);
  opacity: 0.87;
}
.cookie-switch {
  margin-left: 12px;
}
/* Faux styled toggle (for analytics/marketing) */
input[type="checkbox"].cookie-switch {
  appearance: none;
  width: 44px;
  height: 22px;
  border-radius: 12px;
  background: var(--retro-blue);
  position: relative;
  outline: none;
  transition: background var(--transition);
}
input[type="checkbox"].cookie-switch:checked {
  background: var(--retro-red);
}
input[type="checkbox"].cookie-switch:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  transition: transform var(--transition);
}
input[type="checkbox"].cookie-switch:checked:before {
  transform: translateX(20px);
}

.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal .cookie-banner__btn {
  font-size: 1rem;
  padding: 8px 18px;
}

/* ===== Scrollbar Retro Style ===== */
::-webkit-scrollbar {
  width: 10px;
  background: var(--retro-yellow);
}
::-webkit-scrollbar-thumb {
  background: var(--retro-red);
  border-radius: 5px;
}

/* ====================
   RESPONSIVE DESIGN
   ==================== */
@media (max-width: 1080px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 12px;
  }
  .features-grid, .services-grid, .services-list-detailed, .testimonials-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature, .service-card, .service-detail, .testimonial-card, .card {
    min-width: 95%;
    max-width: 100%;
  }
  .hero {
    padding: 30px 0 24px 0;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 24px 6px;
    margin-bottom: 46px;
  }
  .content-wrapper {
    gap: 22px;
  }
  .features-grid, .services-grid, .services-list-detailed, .testimonials-grid, .card-container, .content-grid, .certifications-awards {
    flex-direction: column;
    gap: 17px;
    align-items: stretch;
  }
  .feature, .service-card, .service-detail, .testimonial-card, .card {
    min-width: 96%;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .thankyou-section {
    padding: 24px 6px;
    margin-bottom: 32px;
  }
  .mobile-nav a {
    width: 97vw;
    font-size: 1.05rem;
    padding: 13px 0;
  }
  .cookie-modal {
    padding: 20px 7vw 20px 7vw;
    min-width: 80vw;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.08rem;
  }
  .hero {
    padding: 18px 0 10px 0;
  }
  .section {
    padding: 14px 2px;
  }
  .cta-btn, .cookie-banner__btn {
    font-size: 1rem;
    padding: 8px 14px;
  }
  .cookie-modal {
    padding: 12px 2vw 14px 2vw;
  }
}

/* ====================
   A11Y & VISUAL FOCUS
   ==================== */
a:focus, button:focus, input:focus, .cta-btn:focus, .cookie-banner__btn:focus {
  outline: 2px solid var(--retro-blue);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--retro-yellow) inset;
}

/* ====================
   MICRO-INTERACTIONS
   ==================== */
.cta-btn, .cookie-banner__btn, .mobile-nav a, .service-card, .feature, .testimonial-card, .card {
  transition: box-shadow var(--transition), background var(--transition), color var(--transition), border var(--transition), transform var(--transition);
}

/* ====================
   PRINT STYLES
   ==================== */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer, .cta-btn { display: none !important; }
  .section, .container, .content-wrapper, body, html { background: #fff !important; color: #000 !important; box-shadow: none !important; }
}
