/* ==========================================================================
   LYNTRAX CARGO - RESPONSIVE STYLES
   Professional Mobile-First Responsive Design
   ========================================================================== */

/*
   TABLE OF CONTENTS:
   ==================

   1.  GLOBAL UTILITIES & LAYOUT SYSTEM
       - Body scroll prevention
       - Loading states
       - Animations

   2.  CONTAINER SYSTEM - RESPONSIVE PADDING
       - Tablet containers (1024px)
       - Mobile containers (768px)
       - Small mobile containers (480px)

   3.  MOBILE NAVIGATION SYSTEM
       - Mobile menu overlay
       - Mobile menu components
       - Mobile menu footer
       - Mobile menu interactions

   4.  TABLET NAVIGATION SYSTEM
       - Tablet menu overlay
       - Tablet menu components
       - Tablet menu interactions

   5.  RESPONSIVE TYPOGRAPHY
       - Mobile typography (768px)
       - Small mobile typography (480px)

   6.  RESPONSIVE LAYOUT & GRID SYSTEMS
       - Grid adjustments for mobile
       - Navigation display controls

   7.  RESPONSIVE SPACING & SECTIONS
       - Section padding adjustments
       - Mobile spacing

   8.  RESPONSIVE BUTTONS & INTERACTIVE ELEMENTS
       - Button adjustments
       - Interactive element sizing

   9.  RESPONSIVE IMAGES & MEDIA
       - Image optimizations
       - Media object fitting

   10. RESPONSIVE FORMS
       - Form input adjustments
       - Mobile form improvements

   11. RESPONSIVE ACCORDION
       - Accordion mobile styles

   12. RESPONSIVE FOOTER
       - Footer mobile improvements

   13. TABLET SPECIFIC LAYOUTS (1024px)
       - Navigation adjustments
       - Hero section
       - About section
       - Team section
       - Services section
       - Services detail section
       - Contact section
       - Footer

   14. MOBILE SPECIFIC LAYOUTS & ADJUSTMENTS
       - Mobile layout adjustments (769px)
       - Small mobile screens (480px)
       - Very small mobile screens (360px)
       - Extra small screens (375px, 320px)

   15. ACCESSIBILITY & USER PREFERENCES
       - Focus visible styles
       - Reduced motion
       - High contrast mode
       - Dark mode support

   16. BROWSER COMPATIBILITY
       - Safari specific fixes
       - IE11 fallbacks

   17. PRINT STYLES
       - Print optimizations
*/

/* ==========================================================================
   1. GLOBAL UTILITIES & LAYOUT SYSTEM
   ========================================================================== */

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #1b43fe;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   2. CONTAINER SYSTEM - RESPONSIVE PADDING
   ========================================================================== */

/* Tablet container adjustments */
@media (max-width: 1024px) {
  .nav__container,
  .hero__container,
  .cta__container,
  .about__container,
  .team__container,
  .services__container,
  .services-detail__container,
  .contact__container,
  .footer__container {
    padding-left: 70px;
    padding-right: 70px;
  }
}

/* Mobile container adjustments */
@media (max-width: 768px) {
  .nav__container,
  .hero__container,
  .cta__container,
  .about__container,
  .team__container,
  .services__container,
  .services-detail__container,
  .contact__container,
  .footer__container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Small mobile container adjustments */
@media (max-width: 480px) {
  .nav__container,
  .hero__container,
  .cta__container,
  .about__container,
  .team__container,
  .services__container,
  .services-detail__container,
  .contact__container,
  .footer__container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ==========================================================================
   3. MOBILE NAVIGATION SYSTEM
   ========================================================================== */

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 9, 28, 0.88);
  backdrop-filter: blur(4.5px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: none;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .mobile-menu-overlay {
    display: block;
  }
}

.mobile-menu {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 45px 30px 20px 30px;
  overflow: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
}

/* Mobile Menu Components */
.mobile-menu__close {
  position: absolute;
  top: 66px;
  right: 37px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.mobile-menu__close:hover {
  transform: scale(1.1);
}

.mobile-menu__close svg {
  width: 100%;
  height: 100%;
}

.mobile-menu__logo {
  width: 159px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.mobile-menu__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-menu__nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 60px;
}

.mobile-menu__nav-item {
  display: flex;
  align-items: center;
  height: 22px;
  margin-bottom: 23px;
}

.mobile-menu__nav-item--active .mobile-menu__nav-link {
  font-weight: 800;
  font-size: 19px;
  line-height: 1.14;
}

.mobile-menu__nav-group {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.mobile-menu__nav-link {
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.14;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu__nav-link:hover {
  color: #1b43fe;
}

/* Mobile Menu Footer */
.mobile-menu__footer {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu__cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  z-index: 1;
}

.mobile-menu__cta-title {
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.34;
  color: #ffffff;
  margin: 0;
  max-width: 187px;
}

.mobile-menu__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 187px;
}

.mobile-menu__btn {
  width: 100%;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu__btn.btn--primary {
  background: #1b43fe;
  color: #ffffff;
  font-size: 11px;
}

.mobile-menu__btn.btn--primary:hover {
  background: #1537d4;
  transform: translateY(-2px);
}

.mobile-menu__btn.btn--outline {
  background: #ffffff;
  color: #000000;
  border: 1px solid #e6e9eb;
  font-size: 14px;
}

.mobile-menu__btn.btn--outline:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 275px;
}

.mobile-menu__address {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  font-style: normal;
  margin: 0;
}

.mobile-menu__phone {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu__phone:hover {
  color: #1b43fe;
}

.mobile-menu__email {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu__email:hover {
  color: #1b43fe;
}

.mobile-menu__logo-icon {
  position: absolute;
  top: 50px;
  right: 2px;
  width: 143px;
  height: 143px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
  z-index: 0;
}

/* Hide mobile menu on tablet and desktop */
@media (min-width: 769px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* ==========================================================================
   4. TABLET NAVIGATION SYSTEM
   ========================================================================== */

/* Tablet Menu Overlay */
.tablet-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 9, 28, 0.88);
  backdrop-filter: blur(9px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.tablet-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.tablet-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 371px;
  height: 100%;
  background: rgba(2, 9, 28, 0.88);
  backdrop-filter: blur(4.5px);
  padding: 47px 53px 50px 53px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.tablet-menu-overlay.active .tablet-menu {
  transform: translateX(0);
}

/* Tablet Menu Components */
.tablet-menu__close {
  position: absolute;
  top: 47px;
  right: 53px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease;
}

.tablet-menu__close:hover {
  transform: scale(1.1);
}

.tablet-menu__content {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-top: 50px;
}

.tablet-menu__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 143px;
  height: 143px;
}

.tablet-menu__buttons {
  width: 187px !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-bottom: 65px;
}

.tablet-menu__btn {
  width: 100%;
  justify-content: center;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 700;
  border-radius: 18px !important;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tablet-menu__btn.btn--primary {
  background: #1b43fe;
  font-size: 11px !important;
  color: #ffffff;
}

.tablet-menu__btn.btn--primary:hover {
  background: #1537d4;
  transform: translateY(-2px);
}

.tablet-menu__btn.btn--outline {
  background: #ffffff;
  color: #000000;
  border: 1px solid #e6e9eb;
}

.tablet-menu__btn.btn--outline:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.tablet-menu__contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 11px;
  width: 100%;
}

.tablet-menu__address {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  text-align: start;
  font-style: normal;
}

.tablet-menu__phone {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  text-decoration: none;
  text-align: start;
  transition: color 0.3s ease;
}

.tablet-menu__phone:hover {
  color: #1b43fe;
}

.tablet-menu__email {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  transition: color 0.3s ease;
}

.tablet-menu__email:hover {
  color: #1b43fe;
}

.tablet-menu__footer {
  display: flex;
  align-items: start;
  justify-content: start;
  margin-bottom: 48px;
}

.tablet-menu__title {
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.34;
  color: #ffffff;
  text-align: start;
  max-width: 187px;
}

/* Hide tablet menu on desktop */
@media (min-width: 1025px) {
  .tablet-menu-overlay {
    display: none;
  }
}

/* Show tablet menu only on tablet sizes */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav__buttons .btn.btn--outline {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }
}

@media (max-width: 976px) {
  .nav__buttons .btn.btn--primary {
    display: none;
  }
}

/* ==========================================================================
   5. RESPONSIVE TYPOGRAPHY
   ========================================================================== */

@media (max-width: 768px) {
  h1,
  .hero__title {
    font-size: 32px !important;
    line-height: 1.2 !important;
  }

  h2,
  .about__title,
  .team__title,
  .services__title {
    font-size: 28px;
    line-height: 1.3;
  }

  h3,
  .accordion__title {
    font-size: 18px;
  }

  .footer__title {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  h1,
  .hero__title {
    font-size: 28px;
  }

  h2,
  .about__title,
  .team__title,
  .services__title {
    font-size: 24px;
  }

  .footer__title {
    font-size: 32px;
  }
}

/* ==========================================================================
   6. RESPONSIVE LAYOUT & GRID SYSTEMS
   ========================================================================== */

@media (max-width: 768px) {
  .hero__container,
  .team__container,
  .services-detail__content,
  .contact__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .nav__menu {
    display: none;
  }

  .nav__buttons {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  .tablet-menu-overlay {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer__links {
    grid-template-columns: 1fr;
  }

  .form__row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   7. RESPONSIVE SPACING & SECTIONS
   ========================================================================== */

@media (max-width: 768px) {
  .hero,
  .about,
  .team,
  .services,
  .services-detail,
  .contact {
    overflow: hidden;
    padding: 48px 0;
  }

  .footer {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .hero,
  .about,
  .team,
  .services,
  .services-detail,
  .contact {
    padding: 32px 0;
  }

  .cta__container {
    padding: 32px 0;
  }

  .footer__cta {
    padding: 32px 0 24px;
  }
}

/* ==========================================================================
   8. RESPONSIVE BUTTONS & INTERACTIVE ELEMENTS
   ========================================================================== */

@media (max-width: 480px) {
  .btn {
    padding: 16px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .hero__actions {
    flex-direction: column;
    gap: 16px;
  }

  .hero__navigation {
    justify-content: center;
    gap: 8px;
  }

  .services__header {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

/* ==========================================================================
   9. RESPONSIVE IMAGES & MEDIA
   ========================================================================== */

.hero__img,
.team__img {
  object-fit: cover;
  object-position: center;
}

@media (max-width: 480px) {
  .hero__img {
    height: 250px;
  }

  .team__image {
    height: 300px;
  }
}

/* ==========================================================================
   10. RESPONSIVE FORMS
   ========================================================================== */

@media (max-width: 480px) {
  .form__input,
  .form__textarea {
    padding: 16px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .contact__form-title {
    text-align: center;
    margin-bottom: 24px;
  }
}

/* ==========================================================================
   11. RESPONSIVE ACCORDION
   ========================================================================== */

@media (max-width: 768px) {
  .accordion__header {
    padding: 20px 16px;
  }

  .accordion__title {
    font-size: 18px;
    line-height: 1.3;
  }

  .accordion__content {
    padding: 20px 16px;
  }
}

/* ==========================================================================
   12. RESPONSIVE FOOTER
   ========================================================================== */

@media (max-width: 768px) {
  .footer__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer__legal {
    justify-content: center;
  }

  .footer__social {
    justify-content: center;
  }
}

/* ==========================================================================
   13. TABLET SPECIFIC LAYOUTS (1024px)
   ========================================================================== */

/* Navigation adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav__container {
    padding-left: 70px;
    padding-right: 70px;
    gap: 32px;
  }

  .nav__menu {
    gap: 20px;
  }

  .nav__link {
    font-size: 14px;
  }

  .nav__logo {
    width: 104.2px;
    height: 51.46px;
    min-width: auto;
    min-height: auto;
  }

  .nav__buttons {
    gap: 24px;
  }

  .nav__buttons .btn.btn--outline {
    display: none;
  }
}

/* Hero section */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero {
    min-height: calc(100vh - 80px);
  }

  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-top: 100px;
    padding-bottom: 150px;
    align-items: center;
  }

  .hero__truck {
    display: none;
  }

  .hero__text {
    width: 130%;
  }

  .hero__image {
    transform: translateY(300px);
    order: 2;
  }

  .hero__content {
    order: 1;
  }

  .hero__title {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .hero__description {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 32px;
    max-width: 529px;
    min-height: 80px; /* Prevents content shifting when slide text changes */
  }

  .hero__navigation {
    gap: 10px;
  }

  .hero__nav-btn {
    width: 50px;
    height: 50px;
  }

  .hero__img {
    height: 372px;
    max-width: 382px;
    width: 100%;
  }
}

/* About section */
@media (max-width: 1024px) and (min-width: 769px) {
  .about {
    padding: 120px 0;
    padding-top: 170px;
  }

  .about__container {
    padding-left: 70px;
    padding-right: 70px;
  }

  .about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px;
    align-items: flex-start;
  }

  .about__title {
    font-size: 50px;
    line-height: 1.2;
    max-width: 444px;
  }

  .about__details {
    max-width: 374px;
  }

  .about__subtitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .about__description {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 23px;
  }

  .about__background {
    height: auto;
    max-height: 665px;
  }
}

/* Team section */
@media (max-width: 1024px) and (min-width: 769px) {
  .team {
    padding: 80px 0;
  }

  .team__container {
    padding-left: 70px;
    padding-right: 70px;
  }

  .team__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .team__hero {
    max-width: 558px;
  }

  .team__title {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 32px;
    max-width: 506px;
  }

  .team__description {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 32px;
  }

  .team__image {
    height: 420px;
    width: 100%;
  }

  .team__img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
}

/* Services section */
@media (max-width: 1024px) and (min-width: 769px) {
  .services {
    padding: 60px 0;
  }

  .services__container {
    padding-left: 70px;
    padding-right: 70px;
    position: relative;
  }

  .services__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 25px;
  }

  .services__title {
    font-size: 50px;
    line-height: 1.2;
    max-width: 359px;
  }

  .services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-bottom: 60px;
    padding: 25px 0;
  }

  .service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(228, 231, 238, 0.3);
  }

  .service-item__title {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
  }

  .service-item__icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }

  .services__truck {
    text-align: center;
    margin-top: 60px;
  }

  .services__truck-icon {
    max-width: 854px;
    width: 100%;
    height: auto;
  }
}

/* Services detail section */
@media (max-width: 1024px) and (min-width: 769px) {
  .services-detail {
    padding: 80px 0;
  }

  .services-detail__container {
    padding-left: 70px;
    padding-right: 70px;
  }

  .services-detail__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
  }

  .services-detail__title {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .services-detail__description {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 32px;
  }

  .services-detail__image {
    max-width: 100%;
    height: auto;
  }

  .accordion {
    max-width: 532px;
  }

  .accordion__header {
    padding: 41px 30px 40px;
    gap: 56px;
  }

  .accordion__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
  }

  .accordion__content {
    padding: 25px 30px 40px;
  }

  .accordion__text {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .accordion__item {
    border-bottom: 1px solid rgba(228, 231, 238, 0.3);
  }

  .accordion__item--active .accordion__header {
    background: #183ce5;
  }

  .accordion__item--active .accordion__content {
    background: #183ce5;
  }
}

/* Contact section */
@media (max-width: 1024px) and (min-width: 769px) {
  .contact {
    padding: 80px 0;
  }

  .contact__container {
    padding-left: 70px;
    padding-right: 70px;
  }

  .contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
  }

  .contact__title {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .contact__description {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 32px;
  }

  .contact__info {
    max-width: 428px;
  }

  .contact__form {
    max-width: 419px;
    width: 100%;
  }

  .contact__form-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .form__group {
    margin-bottom: 20px;
  }

  .form__input,
  .form__textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e6e9eb;
    border-radius: 8px;
    font-size: 12px;
    font-family: "Manrope", sans-serif;
    background: #ffffff;
  }

  .form__textarea {
    min-height: 100px;
    resize: vertical;
  }

  .form__input::placeholder,
  .form__textarea::placeholder {
    color: rgba(2, 9, 28, 0.6);
    font-size: 12px;
  }

  .btn--full {
    width: 100%;
    padding: 16px 31px;
    justify-content: center;
    border-radius: 24px;
  }
}

/* Footer */
@media (max-width: 1024px) and (min-width: 769px) {
  .footer {
    padding: 66px 0;
  }

  .footer__container {
    padding-left: 84px;
    padding-right: 84px;
  }

  .footer__cta {
    display: flex;
    justify-content: space-between;
    padding: 31px 0 30px;
    margin-bottom: 32px;
  }

  .footer__title {
    font-size: 70px;
    font-weight: 600;
    line-height: 1.1;
    max-width: 431px;
  }

  .footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding: 71px 0;
    padding-top: 71px;
  }

  .footer__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 285px;
  }

  .footer__address {
    font-size: 16px;
    line-height: 1.2;
    font-style: normal;
  }

  .footer__phone {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    color: inherit;
  }

  .footer__email {
    font-size: 16px;
    line-height: 1.2;
    text-decoration: none;
    color: inherit;
  }

  .footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .footer__menu {
    display: flex;
    flex-direction: column;
    gap: 19px;
  }

  .footer__link {
    font-size: 16px;
    line-height: 1.2;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
  }

  .footer__link:hover {
    color: #1b43fe;
  }

  .footer__bottom {
    display: flex;
    align-items: flex-end;
    gap: 37px;
    padding: 43px 0;
    border-top: 1px solid #ffffff;
  }

  .footer__copyright {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
  }

  .footer__legal-link {
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
  }

  .footer__legal-link:hover {
    color: #1b43fe;
  }

  .footer__social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-left: auto;
  }

  .footer__social-link {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
  }

  .footer__social-link:hover {
    opacity: 0.7;
  }

  .footer__social-link img {
    width: 100%;
    height: 100%;
  }
}

/* CTA block improvements */
@media (max-width: 1024px) and (min-width: 769px) {
  .block__bottom {
    margin-top: 150px !important;
    padding: 41px 0;
  }

  .block__bottom__title {
    max-width: 644px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header__text {
    font-size: 14px;
  }

  .btn {
    padding: 16px 31px;
    font-size: 14px;
  }

  .hero__truck {
    bottom: -50px;
    width: 100%;
    max-width: 1024px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .contact-form__image {
    margin-top: -30px;
    margin-right: -50px;
  }
  .cookie-info__image {
    display: none;
  }
}

/* ==========================================================================
   14. MOBILE SPECIFIC LAYOUTS & ADJUSTMENTS
   ========================================================================== */

@media (max-width: 768px) {
  .about__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 300px;
  }

  .about__details {
    width: 100%;
  }

  .about__background {
    width: 100%;
    height: 240px;
  }

  .about .block__bottom {
    display: none;
  }

  .block__bottom {
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .services__truck {
    width: 150%;
    transform: translateX(5%);
    margin-top: 30px;
  }

  .hero {
    align-items: flex-start;
    min-height: auto;
    padding-top: 140px;
  }

  .hero__truck {
    display: none;
  }

  .hero__container {
    padding-top: 0;
  }

  .hero__actions {
    align-items: flex-start;
    gap: 50px;
  }

  .hero__navigation {
    justify-content: flex-start;
  }

  .hero__image {
    transform: translateX(20%);
  }

  .about {
    padding-top: 160px;
    margin-top: -160px;
  }

  .services-detail__image {
    width: 100%;
    height: 788px;
  }

  .contact {
    padding: 100px 0;
  }

  .contact-form__form-container {
    max-width: 100%;
  }

  .contact-form__details__top {
    flex-direction: column;
    gap: 35px;
    margin-bottom: 35px;
  }

  .contact__bg-logo {
    bottom: -25%;
    left: 10%;
    z-index: 0;
  }
  .team__content {
    grid-template-columns: 1fr;
  }
  .footer__logo {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 147.9px;
    height: 160.59px;
    min-height: auto;
    min-width: auto;
    z-index: -1;
  }
  .contact-form {
    position: relative;
    padding-top: 200px;
    background: #e6e9eb;
    overflow: hidden;
  }
  .contact-form__bg {
    position: absolute;
    top: 10%;
    right: 0;
    width: 337.98px;
    height: 367px;
    z-index: 0;
  }
  .contact-form__form-fields {
    grid-template-columns: 1fr;
  }
  .contact-form__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .contact-cards__container {
    padding: 0;
    gap: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .benefits {
    overflow: hidden;
  }
  .contact-form__image {
    display: none;
  }
  .benefits__container {
    grid-template-columns: 1fr !important;
  }
  .benefits__content {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .benefits__item {
    padding: 0;
    &::after {
      display: none;
    }
    &:not(:last-child) {
      padding-bottom: 30px;
      border-bottom: 1px solid rgba(228, 231, 238, 0.3);
    }
  }
  .pages-hero {
    padding-top: 180px;
    padding-bottom: 80px;
  }
  .faq__container {
    grid-template-columns: 1fr;
  }
  .pages-hero__content {
    grid-template-columns: 1fr;
  }
  .pages-hero__description-wrapper {
    align-items: flex-start;
    padding: 0;
  }
  .pages-hero__description {
    max-width: 100%;
  }
  .team-page__list {
    padding: 40px 0;
  }
  .team-page__list__container {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .cookie-info__container {
    flex-direction: column;
  }
  .cookie-info__image {
    display: none;
  }
  .benefits__image {
    display: none;
  }
  .page-info {
    padding-bottom: 30px;
    overflow: hidden;
  }
  .page-info__container {
    padding: 0;
    flex-direction: column;
  }
  .page-info__content {
    padding: 0 24px;
  }
  .page-info__image {
    width: 100%;
    height: 450px;
  }
  .page-list__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-info__image-photo {
    width: 567.28px;
    height: 629px;
  }
  .service-page__info {
    padding-bottom: 0;
    overflow: hidden;
  }
  .service-page__info__container {
    padding: 0;
    flex-direction: column;
    gap: 30px;
  }
  .service-page__info__content {
    max-width: 100%;
    width: 100%;
    padding: 0 24px;
  }
  .service-capabilities {
    max-width: 100%;
  }
  .service-options {
    overflow: hidden;
  }
  .service-options__content {
    flex-direction: column;
  }
  .service-options__header {
    max-width: 100%;
  }
  .service-options__details {
    width: 100%;
    margin: 0;
  }
  .service-capabilities__lists {
    padding: 40px 30px;
  }
  .service-capabilities__column {
    padding: 0 !important;
  }
  .service-capabilities__lists {
    padding: 0 30px;
    padding-bottom: 50px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .service-features {
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
  }
  .team-page__info__content {
    padding: 0;
  }
  .team-page__bottom-image {
    width: 100%;
    height: 330px;
  }
}

/* ==========================================================================
   15. ACCESSIBILITY & USER PREFERENCES
   ========================================================================== */

/* Focus Visible for Better Accessibility */
.btn:focus-visible,
.nav__link:focus-visible,
.accordion__header:focus-visible,
.form__input:focus-visible,
.form__textarea:focus-visible {
  outline: 2px solid #1b43fe;
  outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__truck {
    animation: none !important;
  }

  .fade-in-up {
    animation: none !important;
  }
}

/* High Contrast Mode */
@media (forced-colors: active) {
  .btn {
    border: 1px solid ButtonText;
  }

  .nav__link:focus,
  .btn:focus {
    outline: 2px solid Highlight;
  }
}

/* Dark Mode Media Query */
@media (prefers-color-scheme: dark) {
  .notification {
    background: #1f2937;
    border-left-color: #3b82f6;
    color: #f9fafb;
  }

  .notification--success {
    border-left-color: #10b981;
  }

  .notification--error {
    border-left-color: #ef4444;
  }

  .notification--warning {
    border-left-color: #f59e0b;
  }
}

/* ==========================================================================
   16. BROWSER COMPATIBILITY
   ========================================================================== */

/* Safari Specific Fixes */
@supports (-webkit-appearance: none) {
  .form__input,
  .form__textarea {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 8px;
  }

  .btn {
    -webkit-appearance: none;
    appearance: none;
  }
}

/* IE11 Fallbacks */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .hero__container,
  .team__container,
  .services-detail__content,
  .contact__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .services__grid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/* ==========================================================================
   17. PRINT STYLES
   ========================================================================== */

@media print {
  .header,
  .footer,
  .btn,
  .hero__navigation,
  .contact__form,
  .notification {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
    color: black !important;
    background: white !important;
  }

  .hero,
  .cta,
  .services,
  .services-detail {
    background: white !important;
    color: black !important;
  }

  .hero__title,
  .about__title,
  .team__title,
  .services__title {
    color: black !important;
    page-break-after: avoid;
  }

  .section {
    page-break-inside: avoid;
  }
}

/* ==========================================================================
   END OF FILE
   ========================================================================== */
