html, body {
    overflow-x: hidden;
}





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    height: 100vh;
    background: radial-gradient(hsl(210, 30%, 20%),hsl(210,30%,0%));
    background-position: center;
    background-size: cover;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

a:hover {
    color: orange;
}

header {
    position: relative;
    padding: 0 2rem;
}

.navbar {
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .links {
    display: flex;
    gap: 2rem;
}

.navbar .toggle_btn {
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.action_btn {
    background-color: orange;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    outline: none;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
}

.action_btn:hover {
    scale: 1.0;
    color: #fff;
}

.action_btn:active {
    scale: 0.95;
}




.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    background-color: ;
    background: rgba(24, 19, 19, 0.912);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu li{
    padding: 0.7rem;
    display: flex;
    align-content: center;
    justify-content: center;
}

.dropdown_menu .action_btn{
    width: 100%;
    display: flex;
    justify-content: center;
}

.dropdown_menu.open{
    height: 240px;
}

@media (max-width: 800px) {
    .navbar .links,
    .navbar .action_btn{
    display: none;
    }
    .navbar .toggle_btn{
        display: block;
    }
    .dropdown_menu{
        display: block;
    }

}

@media (max-width: 576px) {
    .dropdown_menu {
      left: 2rem;
      width: unset;
    }
    

}


header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


#Home .calin {
    position: absolute;
    left: 20px;
    top: 55px;
    font-size: 1.3rem;
    color: #dbd59f;
}


#Home h1 {
    position: relative;
    display: inline-block;
    width: 100%;
    bottom: 50px;
    padding: 120px 40px;
    background-image: url('car.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    border-radius: 10px;    
    border: none;

    white-space: normal;
    word-break: break-word;

    

}

#Home .text {
    color: #dbd59f;
    position: relative;
    left: -25px;
    top: -30px;
    display: inline-block;
    font-size: 4rem;
    font-weight: bold;
}



hr {
    height: 5px;
    background-color: #dbd59f;
    width: 620px;
}

@media (max-width: 800px){
    #Home h1 {
        display: inline-block;
        position: relative;
        bottom: 60px;
        text-align: center;
        padding: 70px 30px;
        font-weight: bold;
    }

    #Home .text {
        font-size: 2.1rem;
        left: 0;
        top: 0;
    }

    #Home .calin{
        position: relative;
        left: 1px;
        top: -1px;
        
    }

    hr {
        display: none;
        position: absolute;
        overflow: hidden;

    }
}

.buttons-container {
  display: flex;
  position: relative;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  background: #9e84842d;
  height: 200px ;
  top: -50px;
  
}


button {
  top: 30px;
  position: relative;
  width: 180px;
  height: 50px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  color: white;
}

.whatsap {
    border: 2px solid #00e0ff;
    background: transparent;
    color: #00e0ff;
    top: 50px;
}

.whatsap::before {
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0;
  width: 0; 
  height: 100%; 
  background: #00e0ff;
  z-index: -1; 
  transition: 0.5s;
}

.whatsap:hover { 
    color: #000; 
    background: #00e0ff;
    transform: translateY(-10px);
    box-shadow:0 0 10px #00e0ff;
}

.whatsap:hover::before { 
    width: 100%; 
}


.telegram {
    border: 2px solid #00e0ff;
    background: transparent;
    color: #00e0ff;
    top: 50px;
}

.telegram::before {
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0;
  width: 0; 
  height: 100%; 
  background: #00e0ff;
  z-index: -1; 
  transition: 0.5s;
}

.telegram:hover { 
    color: #000; 
    background: #00e0ff;
    transform: translateY(-10px);
    box-shadow:0 0 10px #022125;
}

.telegram:hover::before { 
    width: 100%; 
}

#ContactButtons .section-title {
    background: rgba(56, 46, 46, 0.189);
    height: 80px;

    top: -50px;
    color: #fff;
    display: flex;
    position: relative;
    text-align: center;
    justify-content: center;
    align-items: center;
}



.phone {
    border: 2px solid #00e0ff;
    background: transparent;
    color: #00e0ff;
    top: 50px;
}

.phone::before {
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0;
  width: 0; 
  height: 100%; 
  background: #00e0ff;
  z-index: -1; 
  transition: 0.5s;
}

.phone:hover { 
    color: #000; 
    background: #00e0ff;
    transform: translateY(-10px);
    box-shadow:0 0 10px #00e0ff;
}

.phone:hover::before { 
    width: 100%; 
}

.section {
    margin-top: 60px;
    margin-bottom: 50px;
}

@media (max-width: 600px) {
    .buttons-container {
      top: -50px;
      height: 250px;

    }
    

}

#About {
   position: relative;
}

#About .section-title {
    position: relative;
    background-image: url('fon.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
   
    top: -110px;
    height: 40%;
    width: 70%;

    position: relative;
    display: inline-block;
    width: 100%;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    
    padding: 80px 20px;
    text-align: center;
    justify-content: center;
   
 
    border: none;

    white-space: normal;
    word-break: break-word;
}


.about-text {
    position: absolute;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    left: 100px;
}

.vertical-line {
    position: relative;
    width: 10px;
    height: 80px;
    left: 80px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.6) 50%,
        rgba(255,255,255,0.2) 80%,
        rgba(255,255,255,0) 100%
    );
}

.imagee {
    position: absolute;
    background-image: url('car2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
  
    
    height: 300px;
    width: 500px;
    left: 75px;
    top: 30px;

    position: relative;
    border-radius: 10px;
}

.car3 {
    position: absolute;
    background-image: url('car3.jpg');
    background-size: cover;

    transform: translateY(-50%);

    min-width: 190px;
    min-height: 120px;
  
    top: 250px;
    height: 120px;
    width: 190px;
    left: 780px;
    bottom: 60px;
    

    border-radius: 10px;
}



.chip {
    position: absolute;
    background-image: url('chip.jpg');
    background-size: cover;
    
    min-width: 190px;
    min-height: 120px;
  
    top: 190px;
    height: 120px;
    width: 190px;
    left: 980px;
    bottom: 60px;
    


    border-radius: 10px;
}

#about-text {
    position: relative;
    color: #fff;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    top: -250px;
    left: 805px;
    font-size: 0.9rem;
}

.garant {
    position:absolute;
    color: #fff;
    top: 460px;
    left: 815px;
    font-size: 1.5rem;
    font-weight: bold;
}

.garant1 {
    position:absolute;
    color: #fff;
    top: 490px;
    left: 815px;
    font-size: 0.9rem;
}

.garant2 {
    position:absolute;
    color: #fff;
    top: 460px;
    left: 1100px;
    font-size: 1.5rem;
    font-weight: bold;

}

.garant3 {
    position:absolute;
    color: #fff;
    top: 490px;
    left: 1105px;
}



@media (max-width: 800px) {
    .about-text {
        
        font-size: 1rem;
        left: 39px;
        top: 115px;
    }
    

    .vertical-line {
    position: relative;
    top: -80px;
    width: 10px;
    height: 50px;
    left: 20px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.6) 50%,
        rgba(255,255,255,0.2) 80%,
        rgba(255,255,255,0) 100%
    );
}

.imagee {
    position: relative;
    top: 40px;
    height: 100px;
    width: 190px;
    left: 20px;
   
}

.car3 {
    display: none;

}

#about-text {
    position: relative;
    top: -180px;
    left: 20px;
}
.chip {
    display: none;
}

.garant {
    left: 30px;
    top: 400px;
}

.garant1 {
    left: 30px;
    top: 430px;
} 

.garant2 {
    left: 310px;
    top: 400px;
}

.garant3 {
    left: 310px;
    top: 430px;
}

#About .section-title {
    display: block;
}

#about-text {
    position: relative;
    top: -165px;
}

}


/* КАРТОЧКИ */


.services {
    padding: 120px 40px;
    background: radial-gradient(
        hsl(210, 30%, 20%),
        hsl(210, 30%, 0%)
    );
    color: #fff;
    text-align: center;
}


.services-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}


.services-subtitle {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 70px;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

/* КАРТОЧКА */
.service-card {
    background: rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 32px 28px 60px;
    text-align: left;

    position: relative;

    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
}

/* ИКОНКА (КРУЖОК КАК НА ФОТО) */
.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;

    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.2rem;
    margin-bottom: 22px;
}

/* ЗАГОЛОВОК КАРТОЧКИ */
.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 14px;
}

/* ТЕКСТ */
.service-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

/* КНОПКА КАК НА ФОТО */
.view-more {
    position: absolute;
    bottom: 20px;
    left: 28px;

    padding: 6px 14px;
    font-size: 0.7rem;

    background: transparent;
    color: #fff;

    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 999px;

    cursor: pointer;
    transition: 0.3s ease;
}

.view-more:hover {
    background: #fff;
    color: #000;
}

/* АДАПТИВ */
@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .services {
        padding: 90px 20px;
    }
}


/* СКРЫТЫЙ ТЕКСТ */
.service-more {
    max-height: 0;
    overflow: hidden;
    opacity: 0;

    transition:
        max-height 0.6s ease,
        opacity 0.4s ease;

    margin-top: 14px;
}

/* КОГДА КАРТОЧКА ОТКРЫТА */
.service-card.open .service-more {
    max-height: 300px;
    opacity: 1;
}

/* ЧТОБ КНОПКА НЕ ПРЫГАЛА */
.service-card {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card.open {
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    transform: translateY(-4px);
}




.experience {
    text-align: center;
    color: #fff;
}

.experience-box {
    max-width: 700px;
    margin: 40px auto 0;
    padding: 30px 35px;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;

    backdrop-filter: blur(10px);
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 14px;

    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);

    padding: 12px 0;
}

.experience-item:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.exp-icon {
    font-size: 1.1rem;
}




.reviews {
    text-align: center;
    color: #fff;
}

.reviews-box {
    max-width: 520px;
    margin: 40px auto 0;
    padding: 36px 32px;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;

    backdrop-filter: blur(10px);
}

.reviews-icon {
    font-size: 2rem;
    margin-bottom: 18px;
}

.reviews-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
}

.reviews-btn {
    padding: 10px 26px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;

    background: transparent;
    color: #fff;

    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 999px;

    cursor: pointer;
    transition: 0.3s ease;
}

.reviews-btn:hover {
    background: #fff;
    color: #000;
}

/* CONTACT SECTION */
.contact {
    text-align: center;
    color: #fff;
}

/* ТЕКСТ */
.contact-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin: 18px auto 40px;
}

/* КНОПКИ */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

/* ОБЩИЙ СТИЛЬ КНОПОК */
.contact-buttons button {
    width: 160px;
    height: 46px;

    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;

    background: rgba(255,255,255,0.06);
    color: #fff;

    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 999px;

    cursor: pointer;
    transition: 0.35s ease;

    backdrop-filter: blur(6px);
}

/* HOVER */
.contact-buttons button:hover {
    background: #fff;
    color: #000;
    transform: translateY(-4px);
}

/* АДАПТИВ */
@media (max-width: 800px) {
    .contact-buttons {
        gap: 14px;
    }

    .contact-buttons button {
        width: 100%;
        max-width: 260px;
    }
}




.footer {
    margin-top: 120px;
    padding: 30px 20px;

    text-align: center;

    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255,255,255,0.1);

    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}


