/* ======================
   (mobile-first)
   ====================== */
* { box-sizing: border-box; }
html,body { 
  height: 100%; 
  overflow-x: hidden;
}


body {
  padding-top: 80px;
  margin: 0;
  font-family: 'Geologica', sans-serif;
  color: #111;
  background: #fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height: 1;
  -webkit-text-size-adjust:100%;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px 50px;
  border-radius: 32px;
  border: 0;
  cursor: pointer;

  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;

  background: #fd4800;
  box-shadow:
    inset 4px 5px 10px rgba(255, 255, 255, 0.7),
    inset -4px -4px 10px #9b5300,
    2px 8px 20px rgba(89, 17, 0, 0.25);

  animation: beacon 2600ms linear infinite;
  will-change: background, box-shadow;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: #fd4800;
  z-index: -1;
}

@keyframes beacon {
 
  0% {
    background: #fd4800;
    box-shadow:
      inset 4px 5px 10px rgba(255, 255, 255, 0.7),
      inset -4px -4px 10px #9b5300,
      2px 8px 20px rgba(89, 17, 0, 0.25);
  }

  
  20% {
    background: linear-gradient(
      90deg,
      #fd4800 0%,
      #feab2e 50.48%,
      #822602 100%
    );
  }

  
  35% {
    background: #fd4800;
    box-shadow:
      inset 4px 5px 10px rgba(255, 255, 255, 0.7),
      inset -4px -4px 10px #9b5300,
      2px 8px 20px rgba(89, 17, 0, 0.25),
      0 0 60px rgba(255, 238, 0, 0.75);
  }

  
  55% {
    background: linear-gradient(
      90deg,
      #822602 0%,
      #feab2e 49.52%,
      #fd4800 100%
    );
    box-shadow:
      inset 4px 5px 10px rgba(255, 255, 255, 0.7),
      inset -4px -4px 10px #9b5300,
      2px 8px 20px rgba(89, 17, 0, 0.25);
  }

  
  70% {
    background: #fd4800;
    box-shadow:
      inset 4px 5px 10px rgba(255, 255, 255, 0.7),
      inset -4px -4px 10px #9b5300,
      2px 8px 20px rgba(89, 17, 0, 0.25),
      0 0 30px rgba(255, 238, 0, 0.75);
  }

  
  100% {
    background: #fd4800;
    box-shadow:
      inset 4px 5px 10px rgba(255, 255, 255, 0.7),
      inset -4px -4px 10px #9b5300,
      2px 8px 20px rgba(89, 17, 0, 0.25);
  }
}

.btn:hover {
  animation-play-state: paused;
}


.btn-static {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: 0;
  padding: 28px 50px;
  border-radius: 32px;

  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;

  background: #fd4800;
  box-shadow:
    inset 2px 8px 20px rgba(89, 17, 0, 0.25),
    inset -4px -4px 10px rgba(155, 83, 0, 1),
    inset 4px 5px 10px rgba(255, 255, 255, 0.7);
}


.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* ----------------------
   Header
   ---------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0D0D0D;
  z-index: 999;
}
.header-inner {
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px 0;
  justify-content: space-between;
}
.logo-mobile {
  display: none;
}
.nav { 
  display:block; }

.nav-list { 
  display:flex; 
  gap: 40px; 
  list-style:none; 
  margin:0; 
  padding:0;
}
.nav-list a { 
  text-decoration:none; 
  color:#F5F5F5; 
  font-weight:400; 
}
.header-actions {
  margin-left: auto;
  display:flex;
  gap: 10px;
  align-items:center;
}
.phone {
  display: flex;
  align-items: center;
  height: 100%;
  font-weight:800;
  text-decoration:none;
  color:#FED12E;
}
.phone-img {
  width: 32px;
}
.social-media-container {
  gap: 4px;
}
.social-media-link{
  text-decoration: none;
}
.social-media-link svg {
  width: 40px;
}
.burger {
  display: none;
}


/* ----------------------
   Hero
   ---------------------- */
.hero {
  position: relative;
  height: 600px; 
  padding: 28px 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0,0,0,0.8)
    ),
    url("images/hero_backgraund-min.jpg");
  background-size: cover;
  background-position: center;

  
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;   
  z-index: 1;
}
.hero-circles {
  position: absolute;
  right: 0;
  bottom: 0;
  
}


.hero-inner {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  z-index: 2;
}

.hero-content {
  position: relative;
  margin-top: 120px;
  margin-left: 120px;
  max-width: none;
  text-align: left;
}
.hero-title {
  position: relative;
  padding-left: 32px;
  overflow: hidden;
}

.hero-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background-color: #FF6A0D;
}

.hero h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 900;
  color: #fff;
}
.hero-title-clip {
  display: block;
  max-width: 100%;
  overflow: hidden;
  height: 100px; 
}

.hero-title-inner {
  display: block;
  transform: translateX(-100%);
  opacity: 0;
  max-width: 100%;
  white-space: normal;
  line-height: 1.2;
}

.h1-stroke2 {
  display: block;
  font-size: 32px;
  font-weight: 700;
  max-width: 100%;
}

/* H1 MOTION */
.hero-title-inner.enter {
  animation: titleIn 600ms cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero-title-inner.exit {
  animation: titleOut 400ms cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes titleIn {
  from { transform: translateX(-100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

@keyframes titleOut {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(40%); opacity: 0; }
}

.hero ul{
  margin-top: 48px;
}
.hero li {
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  color: #fff;
}

.hero-cta { 
  margin-top: 80px; 
  display:flex; 
  justify-content: center; 
  flex-wrap:wrap; 
}


/* hero image */
.hero-media {
  position: absolute;
  left: calc(100vw - 487px);
  top: 34px;
  z-index: 1;
}

.hero-man {
  display: block;
  max-height: 614px;

}

/* ----------------------
   About
   ---------------------- */
.about {
  position: relative;
  overflow: hidden; 
  padding-bottom: 140px;
}

.about-backgraund {
  position: absolute;
  left: 0;
  top: 180px;
  z-index: 1;
  pointer-events: none;
}

.about-media {
  position: absolute;
  left: 0;
  top: 260px;
  z-index: 2;
}

.tow-truck {
  max-width: 694px;
  height: auto;
  display: block;
}


.about-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}


.about-content {
  grid-column: 2;
  max-width: 520px;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-top: 120px;
  margin-bottom: 40px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.about-content p span {
  font-weight: 600;
}

.p-bold {
font-weight: 600;
padding-left: 160px;
}
.p-bold span{
    color: #FD4800;
}
.about-cta {
  margin-top: 80px;
  margin-left: 100px;
}

/* ----------------------
   Advantages (yellow band)
   ---------------------- */
.advantages {
  width: 100vw;
  background: #FFEE00; 
  overflow: hidden;
}

.advantages-track {
  display: flex;
  width: max-content;
  gap: 60px;
  animation: marquee 18s linear infinite;
}

.advantages-list {
  display: flex;
  gap: 80px;
  padding: 18px 0;
  margin: 0;
}

.advantages-list li {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ----------------------
   Services
   ---------------------- */

   .services {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  
}

.services-content {
  max-width: 500px;
}

.services h2 {
  
  font-size: 40px;
  margin-bottom: 40px;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 24px;
  line-height: 24px;
  font-size: 20px;
}

.services-list svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.services-list strong {
  white-space: nowrap;
  font-weight: 600;
}

.services-image {
  display: grid;
  place-items: center;
}

.services-image > * {
  grid-area: 1 / 1;
}

.services-image svg {
  width: 100%;
  height: auto;
}

.services-image img {
  max-width: 70%;
  z-index: 1;
}
.bold {
  font-weight: 600;
}
.services button {
  margin-left: 100px;
}


/* ----------------------
   Contacts
   ---------------------- */
.contact-block {
  position: relative;
  width: 100%;
  height: 772px;
  background-color: #0D0D0D;
  border-bottom-left-radius: 475.5px;
  color: #fff;
  padding-left: 200px;
  padding-top: 40px;
  box-sizing: border-box;
  overflow: hidden;

}

.contact-block h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
}

.contact-text {
  margin-top: 64px;
  font-size: 20px;
  line-height: 32px;
  max-width: none;
}

.contact-text strong {
  white-space: nowrap;
}

.contact-block button {
  position: absolute;
  top: 325px;
  left: 732px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-auto-rows: 40px;
  row-gap: 16px;   
  align-items: center;
  position: absolute;
  top: 492px;
  left: 732px;
}

.contact-label {
  font-size: 20px;
  font-weight: 900;
  color: #F5F5F5;
}

.contact-value {
  font-size: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.messengers {
  gap: 4px;
}

.phone-contacts-img {
  position: absolute;
  top: 280px;
  left: 200px;
  width: auto;
  height: auto;
}


/* ----------------------
   Footer
   ---------------------- */

.footer {
  width: 100%;
  background: #ffffff;
  color: #000;
  font-family: 'Geologica', sans-serif;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 20px 40px;
  gap: 24px;
}

.footer-logo svg {
  width: 120px;
  height: auto;
}

.footer-text {
  max-width: 820px;
  font-size: 16px;
  line-height: 24px;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  position: relative;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-bottom {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 16px 20px;
}


/* ----------------------
   Modal
   ---------------------- */
/* ---------- Modal wrapper ---------- */

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
  font-family: 'Geologica', sans-serif;
}

.modal.active {
  display: block;
}

/* ---------- Overlay ---------- */

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* ---------- Content ---------- */

.modal-content {
  position: relative;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  max-width: 720px;
  width: calc(100% - 40px);
  background: #0d0d0d;
  border-radius: 24px;
  padding: 48px 32px 56px;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* ---------- Close ---------- */

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* ---------- Text ---------- */

.modal-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.modal-text {
  font-size: 16px;
  line-height: 24px;
  opacity: 0.85;
  margin-bottom: 32px;
}

/* ---------- Phone ---------- */

.modal-phone {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: #ffd84d;
  text-decoration: none;
  margin-bottom: 40px;
}

/* ---------- Button ---------- */

.modal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 48px;
  border-radius: 32px;
  background: linear-gradient(180deg, #ff7a45, #f05a22);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(240, 90, 34, 0.4);
}


.sidebar,
.sidebar-overlay {
  display: none;
}

/* ----------------------
    Responsive styles
   ---------------------- */


@media (max-width: 576px) {
  body {
  padding-top: 48px;
  }

  /* ===== HEADER ===== */
  .site-header {
    height: 48px;
  }

  .header-inner {
    position: relative;
    height: 48px;
    padding: 0 16px;
    align-items: center;
  }

  /* ===== LOGO ===== */

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
  }



  /* ===== NAV OFF ===== */
  .nav {
    display: none;
  }

  /* ===== PHONE CENTER ===== */
 .header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 14px;
  }

  .header-actions p {
    font-size: 14px;
    line-height: 1;
  }
 .phone {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
  }

  .phone-img {
    width: 24px;
    height: 24px;
  }

  /* ===== SOCIAL OFF ===== */
  .social-media-container {
    display: none;
  }

  /* ===== BURGER ===== */
  .burger {
    margin-left: auto;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
  }
 /* ===== SIDEBAR ===== */
  .sidebar {
    display: flex;
    position: fixed;
    top: 0;
    right: -400px;
    width: 320px;
    height: 100vh;
    padding: 40px 16px;
    background: #fff;
    box-shadow: -30px 0 16px rgba(0, 0, 0, 0.25);
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
    transition: right 0.3s ease;
  }

  .sidebar.is-open {
    right: 0; 
  }

  .sidebar-overlay {
    display: none;      
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
  }

  .sidebar-overlay.is-active {
    display: block;
    opacity: 1; 
    pointer-events: auto;
  }

  .sidebar-close {
    align-self: flex-end;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .sidebar-menu li {
    margin-top: 24px;
  }

  .sidebar-menu a {
    font-weight: 900;
    font-size: 20px;
    color: #252526;
    text-decoration: none;
  }
  .sidebar-phone {
    margin-top: auto;
    font-weight: 900;
    font-size: 32px;
    text-align: center;
  }
  .sidebar-phone a {

    text-decoration: none;
    color: #252526;
  }

  .sidebar-btn {
    width: 100%;
    justify-content: center;
  }

  .sidebar-info {
    margin-top: auto;
    text-align: center;
  }

  .sidebar-title {
    font-weight: 700;
    font-size: 24px;
    color: #252526;
  }

  .sidebar-text {
    margin-top: 8px;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.25;
    color: #252526;
  }
  .sidebar-socials {
    margin-bottom: auto;
    display: flex;
    justify-content: center;
    gap: 4px;
  }
  .sidebar-socials img {
    width: 48px;
  }

  /* ===== HERO ===== */
  .hero {
    height: 600px; 
    padding: 0;
    justify-content: flex-start; 
  }

  .hero-inner {
    display: block;
    height: auto;
    position: relative;
  }
  .hero-content {
    margin-top: 32px;    
    margin-left: 0px;    
    max-width: calc(100% - 32px);
    text-align: left;
  }

  .hero-title-clip {
    display: block;
    overflow: hidden;
    height: 44px;      
    margin-left: 16px;  
  }
  .hero-title {
    margin-left: 20px;
    padding-left: 6px;
  }

  .hero-title-inner {
    display: block;
    font-size: 20px;     
    line-height: 1.1;
    transform: translateX(-100%);
    opacity: 0;
    max-width: calc(100% - 32px);
  }

  .hero h1 {
    width: 100%;
  }

  .h1-stroke2 {
    display: block;
    font-size: 16px;   
    line-height: 1.1;
    font-weight: 700;
  }
  .hero ul {
    margin-left: 32px;
    max-width: calc(100% - 48px);
  }
  .hero li {
    font-size: 14px;
    line-height: 143%;
    letter-spacing: 0.04em;
    padding-bottom: 8px;
  }
  .hero-cta {
    position: relative;
    z-index: 2;              
    margin-top: 200px;
    margin-left: 16px;
    margin-right: 16px;
    width: 100%;
  }
  .btn {
    font-size: 16px;
    width: 100%;
    padding: 16px 0px;
  }

  .hero svg {
    width: 320px;
  }

  .hero-media {
    position: absolute;      
    top: 280px;              
    Left: 171px;            
  
  }

  .hero-man {
    max-width: 245px;          
    height: auto;
  }

  /* ===== ABOUT ===== */

  .about {
    padding: 40px 0 80px;
  }

  .about-inner {
    display: block;        
  }

  .about-content {
    max-width: 100%;
    padding: 0 16px;
  }

  .about-content h2 {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 16px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .p-bold {
    padding-left: 0;
    font-size: 14px;
  }
  .about-backgraund {
    left: 50%;
    transform: translateX(-50%);
    top: 300px;

  }

  .about-backgraund svg {
    width: 264px;
    height: auto;
  }

  .about-media {
    left: 50%;
    transform: translateX(-50%);
    top: 360px;

    z-index: 2;
  }

  .tow-truck {
    max-width: 260px;
    transform: scaleX(-1);
  }

  .about-cta {
    margin: 260px auto 0;
    display: flex;
    justify-content: center;
  }

  .btn-static {
    font-size: 16px;
    padding: 16px 0px;
    width: 100%;
  }

  /* ===== ADVANTAGES ===== */

  .advantages-list {
    gap: 40px;
    padding: 12px 0;
  }

  .advantages-list li {
    font-size: 12px;
  }

  /* ===== SERVISES ===== */
  .services {
    flex-direction: column;
    align-items: stretch;
    padding: 40px 16px 60px;
    gap: 32px;
  }

  .services-content {
    max-width: 100%;
  }

  .services h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .services-list li {
    gap: 12px;
    padding-bottom: 16px;
    font-size: 14px;
    line-height: 1.4;
    align-items: flex-start;
  }

  .services-list svg {
    width: 32px;
    height: 32px;
    margin-top: 2px;
  }

  .services-list strong {
    white-space: normal; 
    font-weight: 600;
  }

  .services-image {
    margin: 16px 0;
  }

  .services-image img {
    max-width: 220px;
  }

  .services-image svg {
    width: 260px;
  }


  .services button {
    margin: 16px auto 0;
    align-self: center;
  }

  /* ===== CONTACTS ===== */

  .contact-block {
    display: flex;
    flex-direction: column;
    padding: 40px 16px 56px;
    height: auto;
    background-color: #0D0D0D;
    border-bottom-left-radius: 0;
    color: #fff;

    overflow: visible; 
  }

  
  .contact-block h2 {
    order: 0;
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 40px;
  }

  .contact-text {
    order: 1;
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 24px;
  }

  .contacts-grid {
    order: 2;
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 32px;
  }

  .contact-label {
    font-size: 14px;
    opacity: 0.7;
  }

  .contact-value {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .messengers {
    display: flex;
    gap: 8px;
  }

  .contact-social-media-link img {
    width: 40px;
    height: 40px;
  }

  .contact-block button {
    order: 3;
    position: static;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 40px;
    display: block;
  }

  .phone-contacts-img {
    display: none;
  }


  



}




