/* ===========================================================
   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, 
main, 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;
  background: transparent;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===========================================================
   CSS CUSTOM PROPERTIES
   =========================================================== */
:root {
  --primary: #263238;
  --secondary: #F5F5F5;
  --accent: #FFA000;
  --accent2: #FF3B3B;
  --electric-blue: #1976D2;
  --hot-pink: #EC407A;
  --electric-green: #00E676;
  --white: #fff;
  --gray-light: #ECEFF1;
  --shadow: 0 4px 20px 0 rgba(38,50,56,0.09), 0 1.5px 4px rgba(255,160,0,0.09);
  --radius: 16px;
}

/* ===========================================================
   TYPOGRAPHY: Vibrant, Dynamic, Bold
   =========================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--primary);
  background: var(--secondary);
  font-size: 16px;
  font-weight: 400;
}
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -1.2px;
  color: var(--primary);
  margin-bottom: 24px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--electric-blue);
  margin-bottom: 20px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--hot-pink);
  margin-bottom: 14px;
}
h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--electric-green);
  margin-bottom: 10px;
}
p, ul, ol {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--primary);
  margin-bottom: 20px;
}
strong {
  font-weight: 700;
}

/* Typography for accent blocks */
.cta-primary, .cta-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ===========================================================
   LAYOUT CONTAINER CLASSES & FLEXBOX
   =========================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--radius);
}

.card-container,
.service-grid,
.blog-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 20px;
}

.card, .service-grid > div, .blog-previews > div {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 24px 18px;
  transition: transform 0.28s cubic-bezier(.6,.1,.4,1), box-shadow 0.2s;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
}
.card:hover, .service-grid > div:hover, .blog-previews > div:hover {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 8px 30px -8px var(--electric-blue), 0 2px 12px 0 #FFA00010;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  flex-direction: column;
  min-width: 240px;
  transition: box-shadow 0.2s;
  z-index: 1;
}
.testimonial-card p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 8px;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--electric-blue);
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px -8px var(--hot-pink), var(--shadow);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Specific slider class */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

/* ===========================================================
   NAVIGATION & HEADER
   =========================================================== */
header {
  background: var(--white);
  box-shadow: 0 2px 16px -8px var(--accent2), 0 1.5px 4px #FFA00010;
  position: sticky;
  top: 0;
  z-index: 50;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: flex-start;
  padding: 12px 0;
}
header nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 7px;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover:not(.cta-primary) {
  background: var(--accent);
  color: var(--white);
}
header nav a.cta-primary {
  background: var(--electric-blue);
  color: var(--white);
  border-radius: 23px;
  padding: 9px 24px 9px 24px;
  font-size: 1rem;
  font-weight: 900;
  margin-left: 10px;
  box-shadow: 0 2px 8px #1976D215;
  transition: background 0.2s, transform 0.18s;
  text-transform: uppercase;
}
header nav a.cta-primary:hover {
  background: var(--hot-pink);
  transform: scale(1.05);
  box-shadow: 0 4px 16px -4px var(--accent2);
}

.mobile-menu-toggle {
  display: none;
  background: var(--electric-blue);
  color: #fff;
  border: none;
  font-size: 2.1rem;
  border-radius: 14px;
  width: 47px;
  height: 47px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.22s, box-shadow 0.15s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:hover {
  background: var(--hot-pink);
  box-shadow: 0 2px 8px -2px var(--accent2);
}
.
/* MOBILE NAV OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, var(--electric-blue) 80%, var(--hot-pink) 100%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.7,1.2,.15,1), box-shadow 0.2s;
  box-shadow: 0 4px 32px #1976D210;
  opacity: 0.99;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
  box-shadow: 0 4px 32px #26323830;
}
.mobile-menu-close {
  color: #fff;
  background: transparent;
  border: none;
  font-size: 2.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  align-self: flex-end;
  margin: 20px 24px 0 0;
  cursor: pointer;
  z-index: 3001;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 28px;
  margin-top: 24px;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 0;
  border-bottom: 1px solid var(--accent2);
  width: 100%;
  min-width: 180px;
  border-radius: 0;
  font-weight: 700;
  transition: color 0.16s, background 0.16s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  color: var(--accent);
  background: #fff2;
}

@media (max-width: 1023px) {
  header nav {
    gap: 10px;
    font-size: 0.97rem;
  }
}
@media (max-width: 900px) {
  header nav a {
    font-size: 0.93rem;
    padding: 8px 8px;
  }
}
@media (max-width: 850px) {
  header nav {
    gap: 2px;
    padding: 6px 0;
  }
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Show nav back on desktop if mobile-menu is open */
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}


/* ===========================================================
   HERO SECTION & CALL TO ACTION
   =========================================================== */
.hero {
  width: 100%;
  min-height: 360px;
  background: linear-gradient(108deg, var(--accent) 0%, var(--electric-blue) 80%, var(--hot-pink) 100%);
  color: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px #26323810;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 280px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  max-width: 650px;
  background: none;
}
.hero h1 {
  color: #FFF;
  margin-bottom: 10px;
}
.hero p {
  color: #fff;
  font-size: 1.19rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.hero .cta-primary {
  background: var(--hot-pink);
  color: #fff;
  font-size: 1.13rem;
  letter-spacing: 1.3px;
  font-weight: 900;
  padding: 14px 32px;
  border-radius: 8px;
  margin-top: 8px;
  box-shadow: 0 2px 8px #EC407A22;
  transition: background 0.18s, color 0.18s, transform 0.13s;
  display: inline-block;
  border: none;
}
.hero .cta-primary:hover {
  background: var(--electric-green);
  color: var(--primary);
  transform: scale(1.04);
}

.cta-section {
  background: linear-gradient(102deg, #fff 79%, var(--accent) 100%);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 18px 44px 18px;
  display: flex;
  align-items: center;
}
.cta-section .content-wrapper {
  gap: 14px;
  align-items: flex-start;
}
.cta-primary {
  background: var(--accent);
  color: #fff;
  padding: 13px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1.11rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 2px 10px #FFA00018;
  text-transform: uppercase;
  transition: background 0.16s, transform 0.12s, color 0.16s;
  letter-spacing: 0.7px;
  margin-top: 6px;
  display: inline-block;
  outline: none;
}
.cta-primary:hover, .cta-primary:active {
  background: var(--hot-pink);
  color: #fff;
  transform: scale(1.045);
  box-shadow: 0 4px 16px -4px var(--electric-green), var(--shadow);
}
.cta-primary:focus { outline: 2px solid var(--electric-blue); }

.cta-secondary {
  background: var(--electric-blue);
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.06rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 2.5px 9px #1976D218;
  transition: background 0.16s, transform 0.12s;
  letter-spacing: 0.5px;
  margin-top: 5px;
  display: inline-block;
  outline: none;
}
.cta-secondary:hover, .cta-secondary:active {
  background: var(--accent);
  color: #fff;
  transform: scale(1.045);
  box-shadow: 0 4px 16px -4px var(--hot-pink), var(--shadow);
}
.cta-secondary:focus { outline: 2px solid var(--hot-pink); }

/* ===========================================================
   LISTS, ICONS, CATEGORY LINKS
   =========================================================== */
.features ul,
.card-container ul,
.values ul,
.why-us ul,
.project-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-left: 0;
  margin-bottom: 20px;
}
.features ul li,
.values ul li,
.why-us ul li,
.project-categories ul li {
  background: var(--gray-light);
  padding: 18px 18px 18px 17px;
  border-radius: 10px;
  margin-bottom: 16px;
  flex: 1 1 195px;
  min-width: 170px;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  box-shadow: 0 1px 4px #26323812;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  transition: background 0.17s, box-shadow 0.16s;
}
.features ul li:hover {
  background: var(--electric-green);
  color: var(--primary);
  box-shadow: 0 6px 22px #00E67613;
}
.features ul img {
  width: 42px;
  height: 42px;
  margin-right: 9px;
}

.category-links {
  display: flex;
  gap: 22px;
  margin: 16px 0 18px 0;
  flex-wrap: wrap;
}
.category-links a {
  background: var(--electric-green);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 7px;
  font-weight: 700;
  padding: 7px 20px;
  font-size: 1rem;
  box-shadow: 0 2px 6px #00E67615;
  margin-bottom: 9px;
  transition: background 0.15s, color 0.15s, box-shadow 0.16s;
}
.category-links a:hover {
  background: var(--hot-pink);
  color: #fff;
  box-shadow: 0 4px 12px #EC407A22;
}

/* ===========================================================
   TEXT SECTIONS
   =========================================================== */
.text-section {
  margin-bottom: 28px;
  margin-top: 2px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section ul {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 7px;
  margin-bottom: 10px;
}
.legal-section,
.thankyou-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===========================================================
   PROCESS, PROJECT, BLOG CARDS, PREVIEWS
   =========================================================== */
.process ol {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  counter-reset: step;
  margin-bottom: 26px;
}
.process ol li {
  background: var(--secondary);
  color: var(--electric-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  box-shadow: 0 1.5px 8px #1976D210;
  border-radius: 8px;
  padding: 18px 30px 18px 30px;
  position: relative;
  min-width: 160px;
  font-size: 1.1rem;
  flex: 1 1 120px;
}
.process ol li:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 12px;
  top: 10px;
  color: var(--accent);
  font-size: 1.12rem;
  font-weight: 900;
}
.blog-list .blog-previews {
  margin: 20px 0 0 0;
}

/* ===========================================================
   CONTACT, MAP, FOOTER, SOCIAL
   =========================================================== */
.contact-section .contact-details,
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.06rem;
  color: var(--primary);
}
.contact-details a {
  color: var(--electric-blue);
  font-weight: 600;
  margin-left: 6px;
  transition: color 0.15s;
}
.contact-details a:hover {
  color: var(--hot-pink);
}
.map-placeholder {
  display: flex;
  align-items: center;
  background: var(--electric-blue);
  color: #fff;
  border-radius: 10px;
  padding: 16px 18px;
  gap: 12px;
  margin-bottom: 10px;
}
.map-placeholder img {
  width: 38px;
}

footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 32px 0 0 0;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: 60px;
  box-shadow: 0 -2px 16px -8px #FFA00010;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  color: var(--accent);
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
  transition: color 0.14s;
}
footer nav a:hover {
  color: var(--electric-green);
}
footer .footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 7px;
}
footer .social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
footer .social-links a img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--electric-green);
  padding: 5px;
  transition: background 0.18s, box-shadow 0.16s; 
  box-shadow: 0 1px 5px var(--hot-pink, #1976D218);
}
footer .social-links a:hover img {
  background: var(--hot-pink);
}
footer small {
  display: inline-block;
  margin: 32px 0 0 0;
  color: #bdbdbd;
  font-size: 0.99rem;
}

/* ===========================================================
   RESPONSIVE DESIGN - Media Queries
   =========================================================== */
@media (max-width: 1024px) {
  .container { max-width: 95vw; }
  .card-container, .service-grid, .blog-previews, .testimonial-slider {
    gap: 16px;
  }
  .card, .service-grid > div, .blog-previews > div, .testimonial-card {
    min-width: 170px;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .card, .service-grid > div, .blog-previews > div { min-width: 150px; padding: 16px 7px; }
}
@media (max-width: 768px) {
  .content-wrapper, .card-container, .service-grid, .blog-previews, .testimonial-slider {
    flex-direction: column !important;
    gap: 20px;
    align-items: stretch;
  }
  .features ul,
  .values ul,
  .why-us ul,
  .project-categories ul,
  .process ol {
    flex-direction: column;
    gap: 14px;
  }
  .card, .service-grid > div, .blog-previews > div { min-width: 100%; max-width: 100%; padding: 12px 6px; }
  .hero .container {
    padding: 24px 6px;
    min-height: 180px;
  }
  .hero { padding: 0; min-height: 150px; }
  .section, .legal-section, .thankyou-section {
    padding: 24px 4px;
    margin-bottom: 38px;
  }
  .cta-section { padding: 24px 4px; }
  footer .content-wrapper {
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
}
@media (max-width: 540px) {
  .container { padding: 0 2vw; }
  .card, .service-grid > div, .blog-previews > div { padding: 7px 2vw; }
  .hero h1 { font-size: 1.28rem; }
  .legal-section, .thankyou-section, .section { padding: 13px 1vw; }
  .cta-primary, .cta-secondary { padding: 11px 10vw; font-size: .97rem; }
}

/* ===========================================================
   COOKIE CONSENT BANNER & MODAL
   =========================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -2px 22px #2632381a;
  z-index: 3000;
  padding: 28px 6vw 20px 16vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 1;
  transition: transform 0.3s cubic-bezier(.58,.04,.35,1.38), opacity 0.23s;
}
.cookie-banner.hide {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  border: none;
  padding: 10px 22px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-right: 8px;
  box-shadow: 0 2px 7px #1976D210;
  cursor: pointer;
  transition: background 0.17s, color 0.15s, transform 0.13s;
}
.cookie-banner .accept {
  background: var(--electric-green);
  color: var(--primary);
}
.cookie-banner .accept:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.07);
}
.cookie-banner .reject {
  background: var(--hot-pink);
  color: #fff;
}
.cookie-banner .reject:hover {
  background: var(--electric-blue);
}
.cookie-banner .settings {
  background: var(--electric-blue);
  color: #fff;
}
.cookie-banner .settings:hover {
  background: var(--hot-pink);
  color: #fff;
}

@media (max-width: 900px) {
  .cookie-banner {
    padding: 18px 2vw 15px 7vw;
    font-size: .96rem;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 2vw 7px 2vw;
    font-size: .97rem;
  }
  .cookie-banner .cookie-buttons {
    gap: 10px;
  }
}

/* Cookie Preferences Modal (centered, animated) */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #1117aacc;
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .modal-dialog {
  background: #fff;
  border-radius: 19px;
  padding: 44px 28px 36px 32px;
  max-width: 420px;
  width: 92vw;
  box-shadow: 0 10px 30px #FFA00026, 0 2px 7px #EC407A18;
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 17px;
  top: 13px;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 2.1rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .close-modal:hover {
  color: var(--accent);
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: var(--electric-blue);
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  background: var(--gray-light);
  border-radius: 7px;
  padding: 13px 7px 13px 14px;
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-category .category-label {
  color: var(--primary);
}
.cookie-modal .cookie-category .category-toggle {
  width: 40px;
  height: 20px;
  border-radius: 14px;
  background: #ddd;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-modal .cookie-category .category-toggle input[type="checkbox"] {
  display: none;
}
.cookie-modal .cookie-category .toggle-slider {
  position: absolute;
  left: 2px; top: 2px; bottom: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--hot-pink);
  transition: background 0.13s, left 0.18s;
}
.cookie-modal .cookie-category .category-toggle input[type="checkbox"]:checked ~ .toggle-slider {
  left: 22px;
  background: var(--electric-green);
}
.cookie-modal .cookie-category.always-active .category-toggle {
  background: #aaa !important;
}
.cookie-modal .cookie-category.always-active .toggle-slider {
  background: #aaa;
}
.cookie-modal .category-desc {
  color: #666;
  margin: 4px 0 8px 0;
  font-size: 0.96rem;
}
.cookie-modal .category-actions {
  margin-top: 8px;
}
.cookie-modal button {
  margin-right: 8px;
  padding: 8px 24px;
  border-radius: 7px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  background: var(--electric-blue);
  color: #fff;
  box-shadow: 0 1.5px 7px #1976D218;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal button.accept {
  background: var(--electric-green);
  color: var(--primary);
}
.cookie-modal button.reject {
  background: var(--hot-pink);
  color: #fff;
}
.cookie-modal button.save {
  background: var(--accent);
  color: #fff;
}
.cookie-modal button:hover {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 480px) {
  .cookie-modal .modal-dialog {
    padding: 16px 6vw 12px 6vw;
    min-width: 0px;
    font-size: .98rem;
  }
}

/* ===========================================================
   FORM ELEMENTS (contact/inputs) AND SELECTIONS
   =========================================================== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 13px;
  border-radius: 8px;
  border: 1px solid #bdbdbd;
  background: #fff;
  margin-bottom: 18px;
  outline: none;
  color: var(--primary);
  transition: border 0.15s, box-shadow 0.13s;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--accent);
  box-shadow: 0 1px 8px #FFA00012;
}

/* ===========================================================
   MICRO-INTERACTIONS & ANIMATIONS
   =========================================================== */
.card, .service-grid > div, .blog-previews > div, .cta-primary, .cta-secondary, .testimonial-card, .category-links a, .mobile-menu, .mobile-menu-toggle, .cookie-banner button {
  transition: box-shadow 0.18s, transform 0.2s, background 0.15s, color 0.15s;
}

/* Bouncing entry for .card and .testimonial-card */
@keyframes appearUp {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to   { opacity: 1; transform: none; }
}
.card, .testimonial-card, .service-grid > div, .blog-previews > div {
  animation: appearUp .8s cubic-bezier(.55,-0.02,.42,1.19) both;
}

/* Slide-in left cookie modal */
@keyframes slideInModal {
  0% { transform: translateY(-20px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal .modal-dialog {
  animation: slideInModal 0.29s cubic-bezier(.55,-0.02,.42,1.19) both;
}

/* ===========================================================
   Z-INDEX LAYERING
   =========================================================== */
.mobile-menu { z-index: 2000; }
.mobile-menu-toggle { z-index: 2100; }
.cookie-banner { z-index: 3000; }
.cookie-modal { z-index: 3500; }
header { z-index: 1800; }
footer { z-index: 100; }

/* ===========================================================
   A11Y/FOCUS & MISC
   =========================================================== */
a:focus, button:focus, input:focus, textarea:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 2.5px dashed var(--accent);
  outline-offset: 2.2px;
  z-index: 3000;
}

.hide { display: none !important; }

/* ===========================================================
   CUSTOM ADJUSTMENTS & UTILITY (margin-top, margin-bottom)
   =========================================================== */
.mt-20 { margin-top: 20px !important; }
.mb-24, .mb-20 { margin-bottom: 20px !important; }

/* ===========================================================
   END OF CSS
   =========================================================== */
