/* ============================================================
   Waste Removal & Transport Services — style.css
   Mobile-first, CSS3 only, no frameworks
   ============================================================ */


/* === CUSTOM PROPERTIES === */

:root {
  --color-bg:      #0F172A;
  --color-surface: #1E293B;
  --color-accent:  #F97316;
  --color-text:    #F1F5F9;
  --color-muted:   #94A3B8;
  --color-border:  #334155;

  --font-display: 'Oswald', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --transition:  0.3s ease;
  --radius:      8px;
  --max-width:   1200px;
}


/* === RESET & BASE === */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  display: block;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

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


/* === TYPOGRAPHY === */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h3 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

p {
  line-height: 1.7;
  color: var(--color-text);
}


/* === SKIP LINK === */

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border-bottom-right-radius: var(--radius);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
  outline: none;
}


/* === LAYOUT UTILITIES === */

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-muted {
  color: var(--color-muted);
}

.accent {
  color: var(--color-accent);
}


/* === BUTTONS === */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn--primary {
  background-color: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn--secondary:hover {
  background-color: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.btn--full {
  width: 100%;
}


/* === SCROLL ANIMATIONS === */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* === NAVBAR === */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.site-header.nav-hidden {
  transform: translateY(-100%);
}

.navbar {
  width: 100%;
  transition: background-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background-color: rgba(30, 41, 59, 0.97);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.navbar__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.9rem 1.25rem;
  gap: 0.5rem;
}

/* Logo — UNUSED: replaced by .nav-logo */
.navbar__logo {
  order: 1;
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.navbar__logo:hover {
  color: var(--color-accent);
  opacity: 0.85;
}

/* Language toggle — order 2 so it appears between logo and hamburger */
.lang-toggle {
  order: 2;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Hamburger */
.navbar__hamburger {
  order: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 0.25rem;
  border-radius: 4px;
  transition: background-color var(--transition);
}

.navbar__hamburger:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.navbar__hamburger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.navbar__link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
  border-radius: 4px;
}

.navbar__hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

/* Hamburger → X when expanded */
.navbar__hamburger[aria-expanded="true"] .navbar__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger[aria-expanded="true"] .navbar__hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__hamburger[aria-expanded="true"] .navbar__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav links — collapsed by default */
.navbar__links {
  order: 4;
  flex-basis: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background-color: var(--color-surface);
  border-top: 0 solid var(--color-border);
}

.navbar__links.open {
  max-height: 400px;
  border-top-width: 1px;
}

.navbar__links li {
  border-bottom: 1px solid var(--color-border);
}

.navbar__links li:last-child {
  border-bottom: none;
}

/* Nav link base */
.navbar__link {
  display: block;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  transition: color var(--transition), background-color var(--transition);
}

.navbar__link:hover {
  color: var(--color-accent);
  background-color: rgba(249, 115, 22, 0.05);
}

.navbar__link.active {
  color: var(--color-accent);
}

/* Underline ::after — visible on desktop, safe to define here */
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: calc(100% - 2.5rem);
}

/* Mobile nav — logo centred, hamburger pinned right */
@media (max-width: 767px) {
  .navbar__container {
    position: relative;
    justify-content: space-between;
  }

  .nav-logo {
    order: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .lang-toggle {
    order: 2;
  }

  .navbar__hamburger {
    order: 3;
    margin-left: auto;
  }
}

/* Desktop nav */
@media (min-width: 768px) {
  .navbar__hamburger {
    display: none;
  }

  .navbar__links {
    order: 2;
    flex: 1;
    flex-basis: auto;
    max-height: none;
    overflow: visible;
    background-color: transparent;
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
  }

  .navbar__links.open {
    border-top-width: 0;
  }

  .navbar__links li {
    border-bottom: none;
  }

  .navbar__link {
    padding: 0.5rem 0.75rem;
    background-color: transparent;
  }

  .navbar__link:hover {
    background-color: transparent;
  }

  .navbar__link::after {
    left: 0.75rem;
    bottom: -2px;
  }

  .navbar__link:hover::after,
  .navbar__link.active::after {
    width: calc(100% - 1.5rem);
  }

  .lang-toggle {
    order: 3;
  }

  .navbar__container {
    padding: 0.85rem 2rem;
    flex-wrap: nowrap;
  }
}


/* === LANGUAGE TOGGLE === */

.lang-toggle__divider {
  color: var(--color-muted);
  font-size: 0.85rem;
  user-select: none;
}

.lang-btn {
  background: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-muted);
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.4;
}

.lang-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.lang-btn--active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.lang-btn--active:hover {
  color: #fff;
  opacity: 0.9;
}


/* === HERO === */

.section--hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-bg) 0%, #1a2744 50%, var(--color-surface) 100%);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 860px;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.hero__heading {
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 2.25rem;
  line-height: 1.8;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}


/* === SECTIONS (SHARED) === */

.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  scroll-margin-top: 70px;
}

.section--about   { background-color: var(--color-surface); }
.section--services { background-color: var(--color-bg); }
.section--gallery  { background-color: var(--color-surface); }
.section--contact  { background-color: var(--color-bg); }

.section__container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section__heading {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.04em;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  position: relative;
  color: var(--color-text);
}

.section__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  background-color: var(--color-accent);
  border-radius: 2px;
}


/* === ABOUT === */

.about__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about__text {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.85;
  max-width: 65ch;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.8rem 1.25rem;
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 160px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.trust-badge:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent) inset;
}

.trust-badge__icon {
  color: var(--color-accent);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.trust-badge__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .trust-badge {
    flex: 1 1 calc(50% - 0.5rem);
  }
}


/* === FLEET CALLOUT === */

.fleet-callout {
  margin-top: 2.5rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
}

.fleet-callout__heading {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.fleet-callout__body {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}


/* === SERVICES === */

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid transparent;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  will-change: transform;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-left-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  border-left-color: var(--color-accent);
}

.service-card__icon {
  font-size: 2.25rem;
  line-height: 1;
  display: block;
}

.service-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.service-card__desc {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* === GALLERY === */

.gallery-carousel {
  position: relative;
  padding: 0 3.25rem;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
}

.gallery-carousel__btn:hover:not(:disabled) {
  background: #e0650a;
  transform: translateY(-50%) scale(1.08);
}

.gallery-carousel__btn:disabled {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

.gallery-carousel__btn--prev { left: 0; }
.gallery-carousel__btn--next { right: 0; }

.gallery-item {
  flex: 0 0 calc((100% - 2rem) / 3);
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--color-surface);
}

@media (max-width: 767px) {
  .gallery-carousel {
    padding: 0 2.75rem;
  }

  .gallery-item {
    flex: 0 0 calc((100% - 1rem) / 2);
  }
}

@media (max-width: 480px) {
  .gallery-item {
    flex: 0 0 82%;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 2rem;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
}


/* === CONTACT === */

.contact__layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Details column */
.contact__details {
  display: flex;
  flex-direction: column;
}

.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact__info-item dt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}

.contact__info-icon {
  font-size: 1rem;
  line-height: 1;
}

.contact__info-item dd {
  font-size: 1rem;
  color: var(--color-text);
  padding-left: 1.75rem;
  line-height: 1.5;
}

.contact__info-item dd a {
  transition: color var(--transition);
}

.contact__info-item dd a:hover {
  color: var(--color-accent);
}

/* Form */
.contact__form-wrapper {
  display: flex;
  flex-direction: column;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form__group label {
  font-size: 0.8rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-muted);
  opacity: 0.7;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

/* Custom select arrow */
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form select option {
  background-color: var(--color-surface);
  color: var(--color-text);
}

.form__note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .contact__layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
  }
}


/* === FOOTER === */

.site-footer {
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 3.5rem 0;
}

.footer__container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__tagline {
  color: var(--color-muted);
  font-size: 0.875rem;
}

.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.5rem;
}

.footer__nav a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-muted);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--color-accent);
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.footer__licence {
  color: var(--color-muted);
}

.footer__copy a {
  color: var(--color-accent);
  transition: opacity var(--transition);
}

.footer__copy a:hover {
  opacity: 0.8;
}

@media (min-width: 1024px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer__nav ul {
    justify-content: flex-start;
  }

  .footer__legal {
    text-align: right;
  }
}


/* === FORM FEEDBACK === */

.form-error {
  display: block;
  color: var(--color-accent);
  font-size: 0.8rem;
  margin-top: 0.3rem;
  font-family: var(--font-body);
}

.form-success {
  background-color: var(--color-surface);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  color: var(--color-text);
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.form-general-error {
  display: block;
  color: var(--color-accent);
  font-size: 0.875rem;
  margin-top: 1rem;
  text-align: center;
}

[aria-invalid="true"] {
  border-color: var(--color-accent) !important;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15) !important;
}


/* === SCROLL PROGRESS === */

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background-color: var(--color-accent);
  z-index: 2000;
  pointer-events: none;
  transition: width 0.1s linear;
}


/* === BACK TO TOP === */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background-color: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.6);
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}


/* === REDUCED MOTION === */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .service-card:hover {
    transform: none;
  }

  .gallery__item:hover img,
  .gallery-item:hover img {
    transform: none;
  }

  .back-to-top,
  .back-to-top.visible {
    transform: none;
  }

  #scroll-progress {
    transition: none;
  }
}


/* === NAV LOGO === */

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  width: 160px;
  height: auto;
  display: block;
  transition: opacity var(--transition);
}

.nav-logo img:hover {
  opacity: 0.85;
}


/* === FOOTER LOGO === */

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-logo img {
  width: 220px;
  max-width: 180px;
  height: auto;
  display: block;
}


/* === LIGHTBOX === */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(249, 115, 22, 0.3);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
  z-index: 10000;
}

.lightbox-close:hover {
  color: var(--color-accent);
}

@media (max-width: 767px) {
  .lightbox img {
    max-width: 95vw;
    max-height: 85vh;
  }
}


/* === GOOGLE REVIEWS === */

.review-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  margin-top: 0.75rem;
  width: fit-content;
}

.review-btn {
  background: #fff;
  color: #1a1a1a;
  border: 2px solid #dadce0;
}

.review-btn:hover {
  background: #f8f9fa;
  border-color: #4285F4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
}


/* === MOBILE HERO LOGO === */

/* Hide mobile hero logo on desktop */
.hero-logo-mobile {
  display: none;
}

/* Hide navbar logo on mobile */
@media (max-width: 767px) {
  .desktop-logo {
    display: none;
  }

  .hero-logo-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .hero-logo-mobile img {
    width: 220px;
    max-width: 80vw;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 24px rgba(249, 115, 22, 0.25));
  }
}

