:root {
  --primary-green: #2F855A;
  --secondary-yellow: #ECC94B;
  --hover-yellow: #F6E05E;
  --light-green: #E6F4EA;
  --hover-green: #3FA670;
  --text-dark: #333333;
  --text-light: #FFF9DB;
  --text-gray: #555555;
  --text-footer: #FBBF24;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-green) var(--light-green);
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: var(--light-green);
}

html::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--hover-green);
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  font-size: 1.05rem;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-bg {
  background: var(--primary-green);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--secondary-yellow);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--secondary-yellow);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-offerte {
  color: var(--secondary-yellow);
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease, background-color 0.2s ease;
}

.nav-link-offerte:hover {
  color: var(--hover-yellow);
  transform: scale(1.05);
}

.nav-link-offerte:active {
  transform: scale(0.95);
  background-color: rgba(246, 224, 94, 0.8);
}

.nav-link-offerte::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--hover-yellow);
  transition: width 0.3s ease;
}

.nav-link-offerte:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
  min-width: 200px;
  will-change: opacity, transform;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: var(--secondary-yellow);
  color: #ffffff;
}

.submenu {
  display: none;
  position: relative;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
  min-width: 200px;
  will-change: opacity, transform;
}

.dropdown-menu .dropdown:hover .submenu {
  display: block;
}

.hamburger-container {
  display: none;
}

.hamburger {
  font-size: 24px;
  background: var(--primary-green);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 1100;
  transition: background-color 0.2s ease, transform 0.2s ease;
  animation: bounce 0.5s ease-out;
  touch-action: manipulation;
  will-change: transform;
}

.hamburger:hover, .hamburger:active {
  background-color: var(--secondary-yellow);
  transform: scale(0.95);
}

.hamburger:focus {
  outline: 3px solid var(--secondary-yellow);
  outline-offset: 2px;
}

.fullscreen-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(47, 133, 90, 0.95), rgba(78, 205, 196, 0.95));
  display: none !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 50px;
  z-index: 1000;
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-green) var(--light-green);
  will-change: opacity, transform;
}

.fullscreen-nav::-webkit-scrollbar {
  width: 8px;
}

.fullscreen-nav::-webkit-scrollbar-track {
  background: var(--light-green);
}

.fullscreen-nav::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}

.fullscreen-nav::-webkit-scrollbar-thumb:hover {
  background: var(--hover-green);
}

.fullscreen-nav.open {
  display: flex !important;
}

.fullscreen-nav .nav-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 700px;
  margin-bottom: 15px;
}

.fullscreen-nav a, .fullscreen-nav .dropdown-toggle {
  font-size: 1.4rem;
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 8px 12px;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
  touch-action: manipulation;
}

.fullscreen-nav a:hover, .fullscreen-nav .dropdown-toggle:hover {
  color: var(--secondary-yellow);
  background-color: rgba(236, 201, 75, 0.1);
}

.fullscreen-nav a:active, .fullscreen-nav .dropdown-toggle:active {
  transform: scale(0.95);
  background-color: rgba(236, 201, 75, 0.2);
}

.fullscreen-nav .nav-link-offerte {
  background: var(--secondary-yellow);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
  touch-action: manipulation;
}

.fullscreen-nav .nav-link-offerte:hover {
  background: var(--hover-yellow);
  transform: scale(1.05);
}

.fullscreen-nav .nav-link-offerte:active {
  transform: scale(0.95);
  background-color: rgba(246, 224, 94, 0.8);
}

.fullscreen-nav .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.fullscreen-nav .dropdown-menu {
  display: none;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px;
  border-radius: 10px;
  width: 85%;
  max-width: 340px;
  animation: slideDown 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-green) var(--light-green);
  will-change: opacity, transform;
}

.fullscreen-nav .dropdown-menu::-webkit-scrollbar {
  width: 8px;
}

.fullscreen-nav .dropdown-menu::-webkit-scrollbar-track {
  background: var(--light-green);
}

.fullscreen-nav .dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}

.fullscreen-nav .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--hover-green);
}

.fullscreen-nav .dropdown-menu.open {
  display: block !important;
}

.fullscreen-nav .submenu {
  display: none;
  background: rgba(255, 255, 255, 0.3);
  padding: 8px 12px;
  border-radius: 10px;
  width: 100%;
  margin: 8px 0 8px 15px;
  animation: slideDown 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1002;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-green) var(--light-green);
  will-change: opacity, transform;
}

.fullscreen-nav .submenu::-webkit-scrollbar {
  width: 8px;
}

.fullscreen-nav .submenu::-webkit-scrollbar-track {
  background: var(--light-green);
}

.fullscreen-nav .submenu::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}

.fullscreen-nav .submenu::-webkit-scrollbar-thumb:hover {
  background: var(--hover-green);
}

.fullscreen-nav .submenu.open {
  display: block !important;
}

.fullscreen-nav .dropdown-menu a, .fullscreen-nav .submenu a {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 600;
  margin: 8px 0;
  padding: 6px 10px;
  display: block;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
  touch-action: manipulation;
}

.fullscreen-nav .dropdown-menu a:hover, .fullscreen-nav .submenu a:hover {
  color: var(--secondary-yellow);
  background-color: rgba(236, 201, 75, 0.1);
}

.fullscreen-nav .dropdown-menu a:active, .fullscreen-nav .submenu a:active {
  transform: scale(0.95);
  background-color: rgba(236, 201, 75, 0.2);
}

.fullscreen-nav .submenu a {
  font-size: 1rem;
  padding-left: 15px;
}

.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s ease, transform 0.2s ease;
  touch-action: manipulation;
  will-change: transform;
}

.close-button:hover {
  color: var(--secondary-yellow);
  transform: scale(1.1);
}

.close-button:active {
  transform: scale(0.95);
  background-color: rgba(236, 201, 75, 0.2);
}

body.menu-open {
  overflow: hidden;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(47, 133, 90, 0.5);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1.2s ease-out;
  will-change: opacity, transform;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease-out 150ms;
  will-change: opacity, transform;
}

.hero-button {
  background: var(--secondary-yellow);
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  animation: fadeInUp 1.2s ease-out 300ms;
  will-change: opacity, transform;
}

.hero-button:hover {
  background: var(--hover-yellow);
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.hero-button:active {
  transform: scale(0.95);
}

.service-card {
  background: linear-gradient(135deg, var(--light-green) 0%, #ffffff 100%);
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, var(--primary-green), var(--secondary-yellow)) 1;
  border-radius: 20px;
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-align: center;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.service-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
  word-break: break-word;
  hyphens: auto;
}

.service-card p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.5;
  transition: color 0.3s ease;
  word-break: break-word;
  hyphens: auto;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, var(--secondary-yellow) 0%, var(--hover-yellow) 100%);
}

.service-card:active {
  transform: scale(0.95);
}

.service-card::before {
  content: '📦';
  display: block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--primary-green);
  transition: color 0.3s ease;
}

.service-card:hover::before,
.service-card:hover h3,
.service-card:hover p {
  color: #ffffff;
}

.photo-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.photo-placeholder {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--primary-green);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  will-change: opacity;
  box-sizing: border-box;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(47, 133, 90, 0.15) 0%, rgba(236, 201, 75, 0.05) 100%);
  z-index: 1;
}

.truck-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 0;
  animation: fadeIn 1s ease-out;
}

.form-container {
  background: linear-gradient(135deg, #ffffff 0%, var(--light-green) 100%);
  border: 3px solid var(--primary-green);
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  padding: 3rem;
  transition: transform 0.3s ease;
  will-change: transform;
}

.form-container:hover {
  transform: translateY(-8px);
}

.form-input {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-input:hover {
  background-color: #f9fafb;
}

.form-input:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 10px rgba(47, 133, 90, 0.3);
  outline: none;
}

.form-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
}

.form-button {
  background: linear-gradient(135deg, var(--secondary-yellow), var(--hover-yellow));
  color: var(--text-dark);
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.form-button:hover {
  background: linear-gradient(135deg, var(--hover-yellow), var(--secondary-yellow));
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.services-overview-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1.2s ease-out;
  will-change: opacity, transform;
}

.services-overview-intro {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-style: italic;
  animation: fadeInUp 1.2s ease-out 150ms;
  will-change: opacity, transform;
}

.services-overview-subsection {
  margin-bottom: 3rem;
}

.services-overview-subsection h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.services-overview-subsection h3::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--secondary-yellow);
  bottom: -8px;
  left: 0;
}

.services-overview-subsection p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 1rem;
}

.services-overview-subsection p span {
  font-weight: 500;
  color: var(--primary-green);
}

.about-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1.2s ease-out;
  will-change: opacity, transform;
}

.about-text {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease-out 150ms;
  will-change: opacity, transform;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-contact {
  font-size: 0.94rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.7;
}

.footer-contact a {
  color: var(--text-footer);
  text-decoration: none;
  font-weight: 500;
}

.footer-contact a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

footer a {
  color: var(--text-footer);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.3s ease;
}

footer a:hover {
  text-decoration: underline;
  color: #ffffff;
  transform: scale(1.01);
}

.footer-copyright {
  margin-top: 16px;
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 400;
}

.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 350px;
  position: relative;
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 133, 90, 0.1);
  z-index: 1;
  border-radius: 8px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border: 2px solid var(--primary-green);
  position: relative;
  z-index: 2;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

@media (min-width: 1025px) {
  .photo-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
  }
  .photo-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid var(--primary-green);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  }
  .truck-image {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .photo-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid var(--primary-green);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  }
  .hamburger-container {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .desktop-nav {
    display: none;
  }
  .fullscreen-nav {
    padding-top: 40px;
    max-height: 100vh;
    overflow-y: hidden;
    overscroll-behavior: contain;
    animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .nav-links {
    gap: 12px;
    max-width: 90%;
    margin-bottom: 10px;
  }
  .fullscreen-nav a, .fullscreen-nav .dropdown-toggle {
    font-size: 1.3rem;
    padding: 6px 10px;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .nav-link-offerte {
    font-size: 1.3rem;
    padding: 6px 12px;
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .nav-link-offerte:hover {
    transform: scale(1.05);
  }
  .fullscreen-nav .nav-link-offerte:active {
    transform: scale(0.95);
    background-color: rgba(246, 224, 94, 0.8);
  }
  .fullscreen-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 80%;
    max-width: 320px;
    max-height: calc(100vh - 120px);
    padding: 10px;
    overflow-y: hidden;
    animation: slideDown 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .dropdown-menu a {
    font-size: 1rem;
    margin: 5px 0;
    padding: 5px 8px;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .submenu {
    margin-left: 8px;
    padding: 6px 10px;
    max-height: calc(100vh - 120px);
    overflow-y: hidden;
    animation: slideDown 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .submenu a {
    font-size: 0.9rem;
    padding-left: 10px;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .close-button {
    font-size: 18px;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hero-title {
    font-size: 2.8rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hero-subtitle {
    font-size: 1.2rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 150ms;
  }
  .hero-button {
    font-size: 1rem;
    padding: 0.7rem 2rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 300ms;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .services-overview-title, .about-title {
    font-size: 2.2rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .services-overview-intro, .about-text {
    font-size: 1.1rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 150ms;
  }
  .services-overview-subsection h3 {
    font-size: 1.5rem;
  }
  .services-overview-subsection p {
    font-size: 1rem;
  }
  .service-card {
    padding: 1.75rem;
    min-height: 200px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .service-card::before {
    font-size: 1.7rem;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .service-card h3 {
    font-size: 1.6rem;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .service-card p {
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    line-height: 1.4;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .form-container {
    padding: 1.75rem;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .map-container {
    height: 300px;
  }
  .footer-content {
    gap: 12px;
  }
  .footer-links {
    gap: 12px;
  }
  .footer-contact {
    font-size: 0.9rem;
  }
  .services-section .grid {
    gap: 8px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .hamburger-container {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .desktop-nav {
    display: none;
  }
  .fullscreen-nav {
    padding-top: 40px;
  }
  .fullscreen-nav .nav-links {
    gap: 12px;
    max-width: 95%;
  }
  .fullscreen-nav a, .fullscreen-nav .dropdown-toggle {
    font-size: 1.3rem;
    padding: 6px 10px;
  }
  .fullscreen-nav .nav-link-offerte {
    font-size: 1.3rem;
    padding: 6px 12px;
  }
  .fullscreen-nav .dropdown-menu {
    position: fixed;
    max-width: 360px;
    max-height: calc(100vh - 100px);
    padding: 12px;
  }
  .fullscreen-nav .dropdown-menu a {
    font-size: 1rem;
    margin: 5px 0;
    padding: 5px 8px;
  }
  .fullscreen-nav .submenu {
    margin-left: 8px;
    padding: 6px 10px;
    max-height: 40vh;
  }
  .fullscreen-nav .submenu a {
    font-size: 0.9rem;
    padding-left: 10px;
  }
  .fullscreen-nav .close-button {
    font-size: 18px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-button {
    font-size: 1rem;
    padding: 0.7rem 2rem;
  }
  .services-overview-title, .about-title {
    font-size: 2.2rem;
  }
  .services-overview-intro, .about-text {
    font-size: 1.1rem;
  }
  .services-overview-subsection h3 {
    font-size: 1.5rem;
  }
  .services-overview-subsection p {
    font-size: 1rem;
  }
  .service-card {
    padding: 1.5rem;
    min-height: 180px;
  }
  .service-card::before {
    font-size: 1.7rem;
  }
  .service-card h3 {
    font-size: 1.5rem;
  }
  .service-card p {
    font-size: clamp(0.8rem, 2vw, 0.85rem);
    line-height: 1.4;
  }
  .form-container {
    padding: 1.75rem;
  }
  .map-container {
    height: 300px;
  }
  .footer-content {
    gap: 12px;
  }
  .footer-links {
    gap: 12px;
  }
  .footer-contact {
    font-size: 0.9rem;
  }
  .services-section .grid {
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .photo-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid var(--primary-green);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    height: 300px;
  }
  .truck-image {
    height: 100%;
  }
  .desktop-nav {
    display: none;
  }
  .hamburger-container {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .fullscreen-nav {
    max-height: 100vh;
    overflow-y: hidden;
    overscroll-behavior: contain;
    animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .nav-links {
    gap: 12px;
    max-width: 90%;
    margin-bottom: 10px;
  }
  .fullscreen-nav a, .fullscreen-nav .dropdown-toggle {
    font-size: 1.2rem;
    padding: 6px 10px;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .nav-link-offerte {
    font-size: 1.2rem;
    padding: 6px 12px;
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .nav-link-offerte:hover {
    transform: scale(1.05);
  }
  .fullscreen-nav .nav-link-offerte:active {
    transform: scale(0.95);
    background-color: rgba(246, 224, 94, 0.8);
  }
  .fullscreen-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 80%;
    max-width: 320px;
    max-height: calc(100vh - 120px);
    padding: 10px;
    overflow-y: hidden;
    animation: slideDown 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .dropdown-menu a {
    font-size: 1rem;
    margin: 6px 0;
    padding: 5px 8px;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .submenu {
    margin-left: 10px;
    padding: 6px 10px;
    max-height: calc(100vh - 120px);
    overflow-y: hidden;
    animation: slideDown 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .submenu a {
    font-size: 0.9rem;
    padding-left: 12px;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .close-button {
    font-size: 20px;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hero-title {
    font-size: 2.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hero-subtitle {
    font-size: 1.25rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 150ms;
  }
  .hero-button {
    font-size: 1rem;
    padding: 0.7rem 2rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 300ms;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .services-overview-title, .about-title {
    font-size: 2rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .services-overview-intro, .about-text {
    font-size: 1.1rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 150ms;
  }
  .services-overview-subsection h3 {
    font-size: 1.5rem;
  }
  .services-overview-subsection p {
    font-size: 1rem;
  }
  .service-card {
    padding: 1.25rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .service-card::before {
    font-size: 1.75rem;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .service-card h3 {
    font-size: 1.75rem;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .service-card p {
    font-size: 1rem;
    line-height: 1.5;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .form-container {
    padding: 1.75rem;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .map-container {
    height: 300px;
  }
  .footer-content {
    gap: 12px;
  }
  .footer-links {
    gap: 12px;
  }
  .footer-contact {
    font-size: 0.9rem;
  }
  .services-section .grid {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .photo-placeholder {
    height: 200px;
  }
  .truck-image {
    height: 100%;
  }
  .hamburger {
    font-size: 20px;
    padding: 8px 12px;
  }
  .fullscreen-nav .nav-links {
    gap: 8px;
    max-width: 90%;
    margin-bottom: 8px;
  }
  .fullscreen-nav a, .fullscreen-nav .dropdown-toggle {
    font-size: 1.1rem;
    padding: 5px 8px;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .nav-link-offerte {
    font-size: 1.1rem;
    padding: 5px 10px;
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .nav-link-offerte:hover {
    transform: scale(1.05);
  }
  .fullscreen-nav .nav-link-offerte:active {
    transform: scale(0.95);
    background-color: rgba(246, 224, 94, 0.8);
  }
  .fullscreen-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 80%;
    max-width: 300px;
    padding: 8px;
    animation: slideDown 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .dropdown-menu a {
    font-size: 0.95rem;
    margin: 4px 0;
    padding: 4px 6px;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .submenu {
    margin-left: 8px;
    padding: 5px 8px;
    animation: slideDown 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .submenu a {
    font-size: 0.85rem;
    padding-left: 8px;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fullscreen-nav .close-button {
    font-size: 18px;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hero-title {
    font-size: 1.8rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hero-subtitle {
    font-size: 1rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 150ms;
  }
  .hero-button {
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 300ms;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .services-overview-title, .about-title {
    font-size: 1.75rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .services-overview-intro, .about-text {
    font-size: 1rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 150ms;
  }
  .services-overview-subsection h3 {
    font-size: 1.25rem;
  }
  .services-overview-subsection p {
    font-size: 0.9rem;
  }
  .service-card {
    padding: 1.25rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .service-card::before {
    font-size: 1.5rem;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .service-card h3 {
    font-size: 1.5rem;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .form-container {
    padding: 1.5rem;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .footer-content {
    gap: 10px;
  }
  .footer-links {
    gap: 10px;
    font-size: 0.9rem;
  }
  .footer-copyright {
    font-size: 0.85rem;
  }
  .services-section .grid {
    gap: 8px;
  }
}