/* ============================================
   MAZULOVIC INSTALACIJE - Global Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
  --color-primary: #08284d;
  --color-primary-light: #0e3a6e;
  --color-accent: #1668c9;
  --color-accent-light: #38b6ff;
  --color-cta: #f2751a;
  --color-cta-hover: #d9630e;
  --color-text: #193647;
  --color-text-light: #4a6274;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f7fa;
  --color-bg-dark: #08284d;
  --color-border: #dfe4ea;
  --color-white: #ffffff;
  --color-star: #f2751a;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1200px;
  --header-h: 72px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 8px rgba(8,40,77,0.08);
  --shadow-lg: 0 8px 32px rgba(8,40,77,0.12);
  --transition: 0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-cta); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  color: var(--color-primary);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section {
  padding: 4rem 0;
}
.section--alt {
  background: var(--color-bg-alt);
}
.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-white);
}
.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}
.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cta);
  margin-bottom: 0.5rem;
}
.section--dark .section__label {
  color: var(--color-accent-light);
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-cta);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  z-index: 10000;
  font-weight: 600;
}
.skip-link:focus {
  top: 0.5rem;
  color: var(--color-white);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--color-white);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.header__logo img {
  height: 48px;
  width: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.header__nav a {
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.header__nav a:hover,
.header__nav a.active {
  background: var(--color-bg-alt);
  color: var(--color-accent);
}
.header__cta {
  margin-left: 0.5rem;
}
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.header__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Nav Overlay --- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 999;
  padding: calc(var(--header-h) + 2rem) 1.5rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  display: block;
  color: var(--color-text);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--color-accent);
}
.mobile-nav__cta {
  margin-top: 1rem;
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--primary {
  background: var(--color-cta);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-cta-hover);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(242,117,26,0.35);
}
.btn--outline {
  border: 2px solid var(--color-cta);
  color: var(--color-cta);
  background: transparent;
}
.btn--outline:hover {
  background: var(--color-cta);
  color: var(--color-white);
}
.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
}
.btn--white:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}
.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}
.btn--phone {
  background: var(--color-cta);
  color: var(--color-white);
  font-size: 1.1rem;
}
.btn--phone:hover {
  background: var(--color-cta-hover);
  color: var(--color-white);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="1100" cy="100" r="300" fill="rgba(56,182,255,0.06)"/><circle cx="100" cy="600" r="250" fill="rgba(242,117,26,0.04)"/></svg>') no-repeat center / cover;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content h1 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
}
.hero__content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.hero__badge svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: calc(var(--header-h) + 1rem) 0 0;
  background: var(--color-primary);
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.85rem;
}
.breadcrumbs__list a {
  color: rgba(255,255,255,0.7);
}
.breadcrumbs__list a:hover {
  color: var(--color-white);
}
.breadcrumbs__list span {
  color: rgba(255,255,255,0.5);
}
.breadcrumbs__list .current {
  color: rgba(255,255,255,0.9);
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}
.service-card h3 a {
  color: var(--color-primary);
}
.service-card h3 a:hover {
  color: var(--color-accent);
}
.service-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1rem;
  color: var(--color-accent);
}
.service-card__link:hover {
  gap: 0.6rem;
  color: var(--color-cta);
}
.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
.service-card__link:hover svg {
  transform: translateX(3px);
}

/* --- Sub-service list (hub pages) --- */
.subservice-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.subservice-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.subservice-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
}
.subservice-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--color-bg-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}
.subservice-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.subservice-item h3 a {
  color: inherit;
  text-decoration: none;
}
.subservice-item h3 a:hover {
  color: var(--color-accent);
}
.subservice-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* --- Vehicle Showcase --- */
.vehicle-showcase {
  text-align: center;
  padding: 2rem 0 0;
}
.vehicle-showcase img {
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

/* --- About / Features --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about__content p {
  color: var(--color-text-light);
}
.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
}
.feature__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}
.feature__icon svg {
  width: 18px;
  height: 18px;
}
.feature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 0.15rem;
}
.feature span {
  font-size: 0.85rem;
  color: var(--color-text-light);
}
.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}
.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.review-card__stars svg {
  width: 18px;
  height: 18px;
  color: var(--color-star);
  fill: var(--color-star);
}
.review-card__text {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
}
.review-card__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
}
.review-card__meta {
  font-size: 0.8rem;
  color: var(--color-text-light);
}
.reviews__cta {
  text-align: center;
  margin-top: 2rem;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-white);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-item__question:hover {
  background: var(--color-bg-alt);
}
.faq-item__question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  transition: transform var(--transition);
}
.faq-item.open .faq-item__question svg {
  transform: rotate(180deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item__answer__inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: 3.5rem 0;
  text-align: center;
  color: var(--color-white);
}
.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
}
.contact-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}
.contact-item__icon svg {
  width: 22px;
  height: 22px;
}
.contact-item__label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}
.contact-item__value {
  font-weight: 600;
  color: var(--color-primary);
}
.contact-item__value a {
  color: var(--color-primary);
}
.contact-item__value a:hover {
  color: var(--color-accent);
}
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 350px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
}

/* --- Contact Cards (Kontakt page) --- */
.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.contact-card__icon {
  margin-bottom: 1.25rem;
}
.contact-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.contact-card p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.contact-card .btn {
  width: 100%;
  justify-content: center;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* --- "Gdje radimo" Areas --- */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.area-tag {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: var(--color-bg-alt);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition), background var(--transition);
}
.area-tag:hover {
  border-color: var(--color-accent);
  background: rgba(22,104,201,0.05);
}
a.area-tag {
  text-decoration: none;
  color: var(--color-text);
}
a.area-tag:hover {
  color: var(--color-accent);
}

/* --- Footer --- */
.footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 0;
}
.footer__locations {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__locations h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.footer__locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.footer__locations-grid a {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}
.footer__locations-grid a:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--color-white);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand img {
  height: 48px;
  margin-bottom: 1rem;
}
.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background var(--transition);
}
.footer__social a:hover {
  background: var(--color-cta);
  color: var(--color-white);
}
.footer__social a svg {
  width: 18px;
  height: 18px;
}
.footer h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer__links a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  padding: 0.3rem 0;
}
.footer__links a:hover {
  color: var(--color-white);
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-accent-light);
}
.footer__contact-item a {
  color: rgba(255,255,255,0.8);
}
.footer__contact-item a:hover {
  color: var(--color-white);
}
.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
}
.footer__bottom a {
  color: rgba(255,255,255,0.6);
}
.footer__bottom a:hover {
  color: var(--color-white);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}

/* --- Cookie Banner --- */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 1.25rem;
  z-index: 9999;
  border-top: 2px solid var(--color-accent);
}
.cookie-banner.show {
  display: block;
}
.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cookie-banner__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  flex: 1;
}
.cookie-banner__text a {
  font-weight: 600;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* --- Scroll to Top --- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-cta);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 100;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  transform: translateY(-3px);
  color: var(--color-white);
}
.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-cta { color: var(--color-cta); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content p {
    margin: 0 auto 2rem;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__badges {
    justify-content: center;
  }
  .hero__image {
    max-width: 500px;
    margin: 0 auto;
  }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about__image {
    order: -1;
    max-height: 350px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }
  .section {
    padding: 3rem 0;
  }
  .header__nav {
    display: none;
  }
  .header__cta-desktop {
    display: none;
  }
  .header__hamburger {
    display: flex;
  }
  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 2rem) 0 2rem;
  }
  .hero__image {
    display: none;
  }
  .features-list {
    grid-template-columns: 1fr;
  }
  .subservice-list {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner {
    padding: 2.5rem 0;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    justify-content: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }
  .footer__legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}
