/* =========================================================
   CSS RESET & BASE
   ========================================================= */
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,
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;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #F1FAEE;
  color: #1D3557;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color .2s }
button, input, textarea, select {
  font-family: inherit;
  font-size: 1em;
  outline: none;
}

/* =========================================================
   BRAND TYPOGRAPHY & COLORS -- Creative Artistic
   ========================================================= */
:root {
  --primary: #1D3557;
  --secondary: #457B9D;
  --accent: #F1FAEE;
  --creative1: #F94144;
  --creative2: #F3722C;
  --creative3: #43AA8B;
  --creative4: #4895EF;
  --creative5: #FFDD00;
  --neutralLight: #F7F9FB;
  --shadow: rgba(30,52,87,0.13);
  --border-radius: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.03em;
}
h1 { font-size: 2.5rem; line-height: 1.16; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.18; margin-bottom: 20px; }
h3 { font-size: 1.3rem; line-height: 1.18; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.1rem; }
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #293044;
}

strong, b { font-weight:700; }
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* =========================================================
   HEADER & NAV
   ========================================================= */
header {
  background: white;
  box-shadow: 0 2px 22px var(--shadow);
  position: relative;
  z-index: 100;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
}
.logo img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  transition: transform .2s cubic-bezier(.5,.24,.5,1.6);
}
.logo:hover img {
  transform: rotate(-6deg) scale(1.07);
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  position: relative;
  transition: color .22s;
  padding: 6px 2px;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  border-radius: 6px;
  background: var(--creative3);
  transition: width .35s cubic-bezier(.7,.3,.2,1.3);
  margin-top: 0px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--creative1);
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--creative1);
  color: white;
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 34px;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 4px 16px var(--shadow);
  position: relative;
  transition: background .26s, color .18s, box-shadow .22s, transform .18s;
  margin-left: 20px;
  overflow: hidden;
}
.cta-btn.primary {
  background: var(--creative3);
  color: var(--primary);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--creative2);
  color: white;
  transform: translateY(-4px) scale(1.03) rotate(-2deg);
  box-shadow: 0 8px 18px var(--shadow);
}

/* Hamburger menu button (mobile) */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  background: var(--creative1);
  color: #fff;
  font-size: 2.1rem;
  padding: 5px 16px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 18px var(--shadow);
  transition: background .2s;
  cursor: pointer;
  margin-left: 14px;
  z-index: 110;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--accent);
}

/* Hide nav on mobile, show hamburger */
@media (max-width: 1024px) {
  .main-nav,
  .cta-btn:not(.mobile-cta) {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* =========================================================
   MOBILE MENU
   ========================================================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22, 44, 89, 0.99);
  display: flex;
  flex-direction: column;
  z-index: 999;
  transform: translateX(-100vw);
  transition: transform .44s cubic-bezier(.7,-.2,.2,1.23);
  box-shadow: 8px 0 28px 0 rgba(29, 53, 87, .10);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 22px 0 0;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--creative1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 36px 0 0 32px;
  padding-bottom: 16px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.45rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
  transition: color .22s;
  padding: 10px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--creative5);
}

/* =========================================================
   HERO, SECTIONS & ARTISTIC LAYOUTS
   ========================================================= */
.hero {
  background: linear-gradient(120deg, var(--creative4) 40%, var(--accent) 100%);
  border-radius: 0 0 80px 0;
  box-shadow: 0 14px 44px -14px var(--shadow);
  padding: 56px 0 56px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--primary);
  background: linear-gradient(90deg, var(--creative2), var(--primary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}
.hero p {
  max-width: 650px;
  color: var(--primary);
  font-size: 1.18rem;
  margin-bottom: 32px;
}
.hero .cta-btn {
  margin-top: 16px;
  font-size: 1.13rem;
}

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

.features .feature-grid,
.services .service-grid,
.projects-showcase .project-list,
.steps-overview,
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

.feature {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px var(--shadow);
  padding: 30px 22px 32px;
  max-width: 296px;
  min-width: 230px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: transform .23s, box-shadow .23s;
  border-left: 8px solid var(--creative1);
  position: relative;
}
.feature img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}
.feature:hover {
  box-shadow: 0 6px 40px -3px var(--shadow);
  transform: translateY(-4px) scale(1.04) rotate(-2deg);
}

.service {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 28px 18px;
  max-width: 320px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  border-top: 6px solid var(--creative3);
  position: relative;
  transition: box-shadow .25s, transform .22s;
}
.service:hover {
  box-shadow: 0 10px 46px -12px var(--creative4);
  transform: translateY(-3px) scale(1.03);
}

.project {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 26px 22px;
  flex: 1 1 250px;
  min-width: 240px;
  max-width: 330px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-bottom: 5px solid var(--creative2);
  transition: box-shadow .18s, border .18s;
}
.project:hover {
  box-shadow: 0 6px 38px -8px var(--creative1);
  border-bottom: 6px solid var(--creative1);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px var(--shadow);
  padding: 32px 24px;
  flex: 1 1 300px;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px 0;
  border-left: 7px solid var(--creative4);
  transition: box-shadow .2s, border .18s;
}
.card:hover {
  box-shadow: 0 8px 50px 0 var(--creative4);
  border-color: var(--creative1);
}
.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;
}

/* About intro, office info, mission, trust-bar creative accent blocks */
.about-intro, .office-info, .mission, .trust-bar {
  background: var(--creative5);
  background: linear-gradient(98deg, var(--creative5) 64%, var(--accent) 100%);
  border-radius: var(--border-radius);
  box-shadow: 0 7px 30px -4px var(--shadow);
  padding: 36px 18px 36px 30px;
}

/* Service checklist/list */
.service-list, .usp-list, .trust-points, .certificates-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.service-list li, .usp-list li, .trust-points li, .certificates-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-left: 5px solid var(--creative3);
  padding-left: 12px;
}
.service-list li img, .usp-list li img, .trust-points li img, .certificates-list li img {
  width: 26px;
  height: 26px;
}

/* Steps, process overlay effect */
.steps-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.step {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 14px var(--shadow);
  padding: 28px 18px 24px 18px;
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 250px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  border-right: 7px solid var(--creative3);
  transition: box-shadow .18s, border .18s;
}
.step img {
  width: 32px; height: 32px; margin-bottom: 4px;
}
.step:hover {
  box-shadow: 0 5px 38px -10px var(--creative2);
  border-color: var(--creative2);
}

.client-logos {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 22px;
}
.client-logos img {
  height: 38px;
  width: auto;
  filter: grayscale(.1) contrast(1.3);
  transition: filter .2s, transform .22s;
}
.client-logos img:hover {
  filter: none;
  transform: scale(1.08) rotate(-4deg);
}

/* Table (comparison) */
.comparison-chart {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  box-shadow: 0 4px 18px var(--shadow);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-size: 1rem;
}
.comparison-chart th, .comparison-chart td {
  padding: 15px 10px;
  text-align: left;
  border-bottom: 1px solid var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
}
.comparison-chart th {
  background: var(--creative4);
  color: #fff;
}
.comparison-chart tbody tr:last-child td {
  border-bottom: none;
}
.comparison-chart td:nth-child(2) { color: var(--creative3); font-weight: bold; }
.comparison-chart td:nth-child(3) { color: var(--creative1); }

.guarantees {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  color: var(--primary);
}
.guarantees img {
  width: 30px;
}

/* =========================================================
   TESTIMONIALS & REVIEW SECTIONS
   ========================================================= */
.testimonials {
  background: var(--creative3);
  border-radius: 16px;
  box-shadow: 0 6px 32px var(--shadow);
  padding: 44px 12px;
  margin-bottom: 40px;
}
.testimonials h2 {
  color: #fff;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px var(--primary);
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px var(--shadow);
  margin-bottom: 26px;
  flex-direction: column;
  transition: box-shadow .22s, transform .21s;
}
.testimonial-card:last-child { margin-bottom: 0; }
.testimonial-card p {
  font-size: 1.09rem;
  color: #21335b;
  line-height: 1.44;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 7px 40px var(--creative4);
  transform: scale(1.025);
}

/* Ensuring good contrast for testimonials section */
.testimonial-card p, .testimonial-card .testimonial-meta {
  color: #16213e !important;
  background: none;
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-search {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
.faq-search input {
  border: 2px solid var(--creative2);
  border-radius: 10px;
  padding: 7px 16px;
  font-size: 1rem;
  background: #fff;
  transition: border .19s;
}
.faq-search input:focus {
  border-color: var(--creative1);
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 11px var(--shadow);
  padding: 20px 18px;
  transition: box-shadow .18s;
  margin-bottom: 10px;
}
.faq-item h3 {
  margin-bottom: 7px;
  font-size: 1.04rem;
  cursor: pointer;
  position: relative;
}
.faq-item p {
  margin-bottom: 0;
  color: #314055;
  font-size: 1rem;
}

/* =========================================================
   CONTACT & MAP SECTION
   ========================================================= */
.contact-details {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.02rem;
}
.contact-details img {
  width: 22px;
  height: 22px;
}
.map-location {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-location img {
  width: 82px;
  height: 82px;
  filter: drop-shadow(0 8px 16px var(--creative4));
}

/* =========================================================
   FOOTER & FOOTER-NAV
   ========================================================= */
footer {
  background: var(--primary);
  color: #fff;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  box-shadow: 0 -4px 18px var(--shadow);
  margin-top: 48px;
  padding: 36px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
footer .logo img {
  height: 46px;
  filter: drop-shadow(0 2px 8px var(--creative5));
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 12px 0 14px 0;
}
.footer-nav a {
  color: var(--creative5);
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: .02em;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--creative4);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact p {
  display: flex; align-items: center; gap: 8px; font-size: 1rem;color: var(--accent);
}
.footer-contact img {
  width: 20px; height: 20px;
}
.copyright {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.83);
  margin-top: 26px;
  letter-spacing: .02em;
}

/* =========================================================
   COOKIE CONSENT BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(92deg, var(--creative2) 60%, var(--creative5) 100%);
  color: var(--primary);
  box-shadow: 0 -5px 32px -4px var(--shadow);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 23px 20px 23px 20px;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-top-right-radius: 32px;
  border-top-left-radius: 32px;
  animation: cookieIn .74s cubic-bezier(.6,-.2,.3,1.2);
}
@keyframes cookieIn {
  from { transform: translateY(100%); opacity:0; } to { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 13px;
  margin-top: 9px;
}
.cookie-btn, .cookie-settings-btn {
  padding: 10px 24px;
  border-radius: 12px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 2px 10px var(--shadow);
  cursor: pointer;
  transition: background .18s, color .18s, transform .14s;
}
.cookie-btn.accept {
  background: var(--creative3);
  color: var(--primary);
}
.cookie-btn.reject {
  background: white;
  color: var(--creative1);
  border: 2px solid var(--creative1);
}
.cookie-settings-btn {
  background: var(--creative5);
  color: var(--primary);
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background: var(--creative2);
  color: #fff;
  transform: translateY(-2px);
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 2100;
  background: rgba(26,50,86,0.36);
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  animation: fadeInModal .42s;
}
@keyframes fadeInModal { from { opacity:0; } to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 10px 60px var(--shadow);
  min-width: 0;
  max-width: 380px;
  width: 98vw;
  padding: 36px 24px 30px 24px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  animation: slideUpModal .5s .04s; 
}
@keyframes slideUpModal {
  from { transform: translateY(60%);opacity:0; }
  to { transform: translateY(0%);opacity:1; }
}
.cookie-modal h3 {
  font-size: 1.25rem;
  margin-bottom: 7px;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 22px;
  background: var(--accent);
  border-radius: 24px;
  border: none;
  position: relative;
  outline: none;
  transition: background .25s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--creative3);
}
.cookie-toggle:not(:checked) {
  background: var(--creative2);
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left .26s, background .12s;
  box-shadow: 0 1px 5px rgba(60,60,60,0.1);
}
.cookie-toggle:checked:before {
  left: 17px;
  background: var(--primary);
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
/* End Cookie Consent Banner */

/* =========================================================
   LEGAL, STATIC
   ========================================================= */
.legal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 13px var(--shadow);
  padding: 36px 24px;
  margin-bottom: 40px;
  color: #222F43;
}
.legal h1, .legal h2 { color: var(--primary); }
.legal ul {
  margin-bottom: 18px;
  list-style-type: disc;
  padding-left: 22px;
}
.legal address {
  margin-top: 16px;
  font-style: normal;
  color: var(--creative3);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* =========================================================
   THX PAGE/THANK YOU
   ========================================================= */
.thank-you {
  background: linear-gradient(90deg, var(--creative1) 40%, var(--creative3) 100%);
  border-radius: 16px;
  box-shadow: 0 8px 32px -10px var(--shadow);
  margin-top: 40px;
  padding: 50px 22px 60px 22px;
  color: #fff;
  align-items: center;
  text-align: center;
}
.thank-you h1 { color: #fff; margin-bottom: 19px; text-shadow:0 2px 16px var(--primary); }
.thank-you ul { list-style: disc; padding-left:20px; text-align:left; color: #fff; }
.thank-you .cta-btn { background: #fff; color: var(--creative1); margin-top: 28px; }

/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */
@media (max-width: 1000px) {
  .container { max-width: 98vw; }
  .main-nav { gap: 18px; }
  .features .feature-grid, .services .service-grid, .projects-showcase .project-list, .steps-overview, .project-list { gap: 16px; }
  .feature, .service, .project, .card { min-width: 170px; padding: 22px 10px; }
}
@media (max-width: 768px) {

  /* All cards/sections stack vertical */
  .features .feature-grid,
  .services .service-grid,
  .projects-showcase .project-list,
  .steps-overview,
  .project-list,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature, .service, .project, .card, .step {
    min-width: 0; max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .client-logos { gap: 18px; flex-wrap: wrap; }
  section, .section { padding: 34px 8px; }
  .content-wrapper { gap: 18px; }
  .hero {
    padding: 35px 0 30px 0;
  }
  .hero h1 { font-size: 1.7rem; }
  .hero p { font-size: 1.04rem; }
  h2 { font-size: 1.37rem; }
  h1 { font-size: 1.7rem; }
  .thank-you { padding: 26px 6px 34px 6px; }
}
/* Make sure nothing overlaps on smallest screens */
@media (max-width: 480px) {
  .container { padding: 0 6px; }
  .feature, .service, .project, .card, .about-intro, .office-info, .thank-you, .legal {
    padding: 12px 5px;
  }
  .hero { border-radius: 0 0 38px 0; }
  .cookie-modal { padding: 22px 6px 18px 6px; }
}

/* =========================================================
   ARTISTIC EFFECTS & MICRO-INTERACTIONS
   ========================================================= */
.card, .feature, .service, .project, .testimonial-card, .step {
  transition: box-shadow .26s, border .14s, transform .2s;
}
.card:hover, .feature:hover, .service:hover, .project:hover, .step:hover {
  transform: rotate(-.5deg) scale(1.017);
  box-shadow: 0 12px 36px -12px var(--creative3);
  border-color: var(--creative2);
}
.cta-btn:active, .cookie-btn:active, .cookie-settings-btn:active {
  transform: scale(.97);
  box-shadow: 0 1px 8px var(--shadow);
}

/* ============ UTILITIES ============== */
.gap-20 { gap: 20px; }
.gap-32 { gap: 32px; }
.text-center { text-align: center; }
.flex { display: flex; }
.fwrap { flex-wrap: wrap; }
.fcol { flex-direction: column; }
.frow { flex-direction: row; }
.aling-center { align-items: center; }
.aling-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.justify-between { justify-content: space-between; }

/* ============ END UTILITIES ============== */

/* =========================================================
   FORM ELEMENTS
   ========================================================= */
input[type="text"], input[type="email"], textarea {
  background: #fff;
  border: 2px solid var(--creative4);
  border-radius: 10px;
  font-size: 1.04rem;
  padding: 10px 16px;
  margin-top: 7px;
  transition: border .18s, box-shadow .18s;
  width: 100%;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border: 2px solid var(--creative1);
  box-shadow: 0 2px 10px var(--creative4);
}
label { display: block; font-weight: bold; margin-bottom: 0.4em; }

/* =========================================================
   SCROLLBAR (for artistic flair)
   ========================================================= */
::-webkit-scrollbar { width: 10px; background: var(--accent); }
::-webkit-scrollbar-thumb { background: var(--creative2); border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: var(--creative1); }

/* =========================================================
   MISC
   ========================================================= */
.hidden { display: none !important; }

/* Accessibility focus states */
a:focus, .cta-btn:focus, .cookie-btn:focus, .cookie-settings-btn:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--creative4);
  outline-offset: 2px;
}

