 .hero-section {
     position: relative;
     height: 100vh;
     display: flex;
     flex-direction: column;
     overflow: hidden;
 }
.toast{
    position: fixed;
    top: 20px;
    right: 20px;
    width: fit-content;
    z-index: 10;
    transition: all 0.4s ease-in-out;
}
.toast.hide{
    transform: translateY(-200%);
    transition: all 0.4s ease-in-out;

}
 .toast-wrapper{
     display: flex;
     flex-direction: column;
     gap: 8px;
     padding: 12px;
     background: black;
     color: white;
     border-radius: 12px;
 }
 .toast-wrapper h3{
    color: white;
     font-size: 20px;
     text-align: center;
 }
 .toast-wrapper h4{
     color: white;
     font-size: 16px;
     text-align: center;
 }
 .hero-section::before {
     width: 200px;
     height: 100%;
     position: absolute;
     left: 0;
     top: 0;
     background: black;
     opacity: 0.2;
     content: '';
     filter: blur(40px);
     z-index: 1;
 }

 .hero-section img {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
        filter: brightness(0.6);

 }

 .header {
     display: flex;
     justify-content: flex-start;
     align-items: center;
 }

 .main-content {
     height: calc(100% - 64px);
     display: flex;
     align-items: center;
 }

 .logo {
     font-family: "El Messiri", sans-serif;
     font-size: 24px;
     font-weight: bold;
     color: var(--color-white);
     text-transform: uppercase;
     margin-right: 30px;
     letter-spacing: 1px;
 }

 .nav-info {
     font-size: 16px;
     color: var(--color-text-light);
     white-space: nowrap;
 }

 .title-group {
     max-width: 650px;
     margin-bottom: 20px;
 }

 .title-group h1 {
     font-size: 38px;
     font-weight: 700;
     line-height: 1.1;
     margin-bottom: 10px;
     position: relative;
 }



 .subtitle {
     font-size: 48px;
     font-weight: 700;
     line-height: 1.1;
     color: var(--color-white);
     margin-bottom: 20px;
 }

 .feature-list {
     list-style: none;
     margin-bottom: 20px;
 }

 .feature-item {
     display: flex;
     align-items: center;
     font-size: 18px;
     color: var(--color-white);
     margin-bottom: 15px;
 }

 .feature-item::before {
     content: "🔹";
     font-size: 24px;
     line-height: 1;
     margin-right: 15px;
     font-weight: bold;
 }

 .btn-request {
     display: inline-block;
     padding: 15px 35px;
     background-color: var(--color-brand-yellow);
     color: var(--color-brand-dark);
     text-decoration: none;
     font-weight: bold;
     font-size: 16px;
     border: none;
     cursor: pointer;
     transition: background-color 0.3s;
     text-align: center;
     white-space: nowrap;
 }

 .btn-request:hover {
     background-color: #d1b47e;
 }

 .footer-bar {
     width: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 13px;
     color: var(--color-text-light);
 }

 .contact-phone,
 .copyright,
 .source-link {
     color: var(--color-text-light);
     text-decoration: none;
 }

 .section-container {
     background: #1b2432;
     position: absolute;
     top: 0;
     left: 0;
     z-index: 1;
     width: 100%;
 }

 #main-section {
     z-index: 2;
 }

 .hidden {
     opacity: 0;
     z-index: -1;
     pointer-events: none;
 }

 .hidden .main-content {
     z-index: 0;
     position: relative;
     pointer-events: none;
 }

 .main-content-second h2 {
     font-size: 32px;
     position: relative;
 }


 form {
     margin-top: 20px;
     font-family: Arial, sans-serif;
     background-color: var(--bg-dark);
     padding: 10px;
     display: flex;
     gap: 12px;
     max-width: 820px;
     position: relative;
     width: 100%;
     align-items: center;
     flex-wrap: wrap;
     border-radius: var(--border-radius);
 }

 .form-group-1,
 .form-group-2 {
     width: 100%;
     position: absolute;
     display: flex;
     gap: 12px;
     top: 20px;
     flex-wrap: wrap;
     align-items: center;
     transition: all 0.4s ease-in-out;

 }

 .hide-group {
     opacity: 0;
     pointer-events: none;
 }

 .radio-option {
     padding: 12px;
     width: calc(50% - 6px);
     display: flex;
     align-items: center;
     position: relative;
     border: 1px solid #364673;
     margin-bottom: 8px;
     border-radius: 6px;
     cursor: pointer;
     font-size: 16px;
     transition: background-color 0.2s;
 }


 .radio-option input[type="radio"] {
     position: absolute;
     opacity: 0;
     width: 0;
     height: 0;
 }

 .custom-radio {
     height: 20px;
     width: 20px;
     background-color: transparent;
     border-radius: 50%;
     border: 1px solid white;
     display: inline-block;
     position: relative;
     margin-right: 15px;
     flex-shrink: 0;
 }

 .custom-radio::after {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: #364673;
     opacity: 0;
     transition: opacity 0.2s;
 }

 .radio-option input[type="radio"]:checked+.custom-radio::after {
     opacity: 1;
 }

 .radio-option input[type="radio"]:focus+.custom-radio {
     box-shadow: 0 0 0 2px rgba(79, 90, 106, 0.5);
 }

 .progress {
     display: flex;
     flex-direction: row;
     gap: 30px;
     width: 100%;
     margin: 0 auto;
     max-width: 820px;
     justify-content: center;
     align-items: end;
 }

 .progress .left {
     display: flex;
     flex-direction: column;
     gap: 12px;
     width: 100%;

 }

 .progress .left span {
     font-size: 14px;
     opacity: 0.8;
     color: white;
     align-items: center;
     display: flex;
 }

 .progress .left .persent {
     color: var(--color-brand-yellow);
     margin-left: 8px;
     opacity: 1;
     font-size: 18px;
 }

 .progress .left .bar {
     width: 100%;
     height: 6px;
     border-radius: 16px;
     background: #364763;
     position: relative;
     transition: all 0.4s ease-in-out;
 }

 .progress .left .bar.after:after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     height: 100%;
     width: 50%;
     background: var(--color-brand-yellow);
     border-radius: 16px;
     transition: all 0.4s ease-in-out;

 }

 .progress .right {
     display: flex;
     flex-direction: row;
     gap: 20px;
 }

 .progress .right .arrow {
     display: flex;
     justify-content: center;
     height: 43px;
     gap: 8px;
     align-items: center;
     border-radius: 4px;
     border: 1px solid #f4e4ba;
     cursor: pointer;
     padding: 0 18px;

 }

 .progress .right .span {
     font-size: 18px;
     color: #f4e4ba;
 }

 .progress .right .prev-step {
     width: 43px;
     border: 1px solid #364763;
 }

 .progress .next-step {
     padding: 0 18px !important;
     cursor: pointer;
 }

 .progress .next-step.disable {
     cursor: not-allowed;
 }

 .progress .right .arrow.disable {
     opacity: 0.8;
     padding: 0;
 }

 .th-section {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     height: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     gap: 20px;
     transition: all 0.4s ease-in-out;
 }

 .th-section h3 {
     font-size: 32px;
     position: relative;
     line-height: 30px;
     text-align: center;
 }

 .contacts {
    align-items: center;
     width: 100%;
     display: flex;
     max-width: 612px;
     flex-direction: column;
     gap: 12px;
     justify-content: left;
     align-items: start;
 }

 .contacts span {
    width: 100%;
     font-size: 18px;
     text-align: left;
 }

 .contacts-items {
     display: flex;
     flex-direction: row;
     gap: 12px;
 }

 .contacts-items .item {
     display: flex;
     flex-direction: row;
     align-items: center;
     gap: 12px;
     width: 300px;
     padding: 12px;
     border-radius: 4px;
     background: #1d293d;
     transition: all 0.3s ease-in-out;
     cursor: pointer;
 }

 .contacts-items .item:hover {
     box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
 }

 .contacts-items .item svg {
     width: 30px;
     height: 30px;
 }

 .checkbox {
    width: 100%;
     margin-top: 10px;
     display: flex;
     flex-direction: row;
     align-items: start;
     gap: 8px;
 }

 .checkbox label {
     font-size: 14px;
 }
.contacts span.hide-group{
    max-height: 0;
}
 .checkbox input[type="checkbox"] {
     width: 16px;
     height: 16px;
     cursor: pointer;
     margin-top: 2px;
 }

 .checkbox label a {
     color: var(--color-brand-yellow);
     text-decoration: none;
     transition: text-decoration 0.3s;
 }

 .checkbox label a:hover {
     text-decoration: underline;
 }

 .phone-input-container {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
 .phone-input-container label {
    font-size: 12px;
    margin-bottom: 6px;
    color: var(--color-white);
    opacity: 0.7;
 }
 #phone-input.error{
     border: 1px solid red!important;
 }
 #name-input.error{
     border: 1px solid red!important;
 }

.phone-input-container #phone-input {
    width: 100%;
    height: 50px;
    padding: 10px 15px;
    font-size: 16px;
    background-color: #1d293d;
    color: #ffffff;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
}
.contacts-section {
    width: 100%;
    max-height: auto;
    transition: all 0.4s ease-in-out;
}
.contacts-section.hide-group{
    max-height: 0;
}
.contacts-section form{
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
}
#name-input{
    width: 100%;
    height: 50px;
    padding: 10px 15px!important;
    margin: 0;
    font-size: 16px;
    background-color: #1d293d;
    color: #ffffff;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
}
.sb-btn{
    width: 100%;
    padding: 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 8px;
    background: transparent;
    opacity: 0.7;
    cursor: pointer;
    color: var(--color-brand-yellow);
    border: 1px solid var(--color-brand-yellow);
}

@media screen and (max-width:1024px) {

.hero-section{
    height: 100dvh;
}
.hero-section img{
    object-fit: cover;
        filter: brightness(0.6);
}
 .header {
     display: flex;
     justify-content: flex-start;
     align-items: center;
 }

 .main-content {
     height: calc(100% - 64px);
     display: flex;
     align-items: center;
 }

 .logo {
     font-size: 20px;
     font-weight: bold;
     color: var(--color-white);
     text-transform: uppercase;
     margin-right: 30px;
     letter-spacing: 1px;
 }

 .nav-info {
    display: none;
 }

 .title-group {
     max-width:100%;
     margin-bottom: 20px;
 }

 .title-group h1 {
     font-size: 26px;
     font-weight: 700;
     line-height: 1.1;
     margin-bottom: 0px;
     text-align: center;
     position: relative;
 }



 .subtitle {
     font-size: 48px;
     font-weight: 700;
     line-height: 1.1;
     color: var(--color-white);
     margin-bottom: 20px;
 }

 .feature-list {
     list-style: none;
     margin-bottom: 20px;
 }

 .feature-item {
     display: flex;
     align-items: center;
     font-size: 18px;
     color: var(--color-white);
     margin-bottom: 15px;
 }

 .feature-item::before {
     content: "🔹";
     font-size: 24px;
     line-height: 1;
     margin-right: 15px;
     font-weight: bold;
 }

 .btn-request {
     display: inline-block;
     padding: 15px 35px;
     margin: 0 auto;
     width: 100%;
     background-color: var(--color-brand-yellow);
     color: var(--color-brand-dark);
     text-decoration: none;
     font-weight: bold;
     font-size: 16px;
     border: none;
     cursor: pointer;
     transition: background-color 0.3s;
     text-align: center;
     white-space: nowrap;
 }

 .btn-request:hover {
     background-color: #d1b47e;
 }

 .footer-bar {
     width: 100%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 13px;
     color: var(--color-text-light);
 }

 .contact-phone,
 .copyright,
 .source-link {
     color: var(--color-text-light);
     text-decoration: none;
 }

 .section-container {
     background: #1b2432;
     position: absolute;
     top: 0;
     left: 0;
     z-index: 1;
     width: 100%;
 }

 #main-section {
     z-index: 2;
 }

 .hidden {
     opacity: 0;
     z-index: -1;
     pointer-events: none;
 }

 .hidden .main-content {
     z-index: 0;
     position: relative;
     pointer-events: none;
 }

 .main-content-second h2 {
     font-size: 28px;
     text-align: center;
     position: relative;
 }


 form {
     margin-top: 20px;
     font-family: Arial, sans-serif;
     background-color: var(--bg-dark);
     padding: 10px;
     display: flex;
     gap: 12px;
     max-width: 100%;
     position: relative;
     width: 100%;
     align-items: center;
     flex-wrap: wrap;
     border-radius: var(--border-radius);
 }

 .form-group-1,
 .form-group-2 {
     width: 100%;
     position: absolute;
     display: flex;
     flex-direction: column;
     gap: 12px;
     top: 20px;
     left: 0;
     flex-wrap: wrap;
     align-items: center;
     transition: all 0.4s ease-in-out;

 }

 .hide-group {
     opacity: 0;
     pointer-events: none;
 }

 .radio-option {
     padding: 12px;
     width: calc(100% - 24px);
     display: flex;
     align-items: center;
     position: relative;
     border: 1px solid #364673;
     margin-bottom: 8px;
     border-radius: 6px;
     cursor: pointer;
     font-size: 16px;
     transition: background-color 0.2s;
 }


 .radio-option input[type="radio"] {
     position: absolute;
     opacity: 0;
     width: 0;
     height: 0;
 }

 .custom-radio {
     height: 20px;
     width: 20px;
     background-color: transparent;
     border-radius: 50%;
     border: 1px solid white;
     display: inline-block;
     position: relative;
     margin-right: 15px;
     flex-shrink: 0;
 }

 .custom-radio::after {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: #364673;
     opacity: 0;
     transition: opacity 0.2s;
 }

 .radio-option input[type="radio"]:checked+.custom-radio::after {
     opacity: 1;
 }

 .radio-option input[type="radio"]:focus+.custom-radio {
     box-shadow: 0 0 0 2px rgba(79, 90, 106, 0.5);
 }

 .progress {
     display: flex;
     flex-direction: row;
     gap: 30px;
     width: 100%;
     margin: 0 auto;
     max-width: 820px;
     justify-content: center;
     align-items: end;
 }

 .progress .left {
     display: flex;
     flex-direction: column;
     gap: 12px;
     width: 100%;

 }

 .progress .left span {
     font-size: 14px;
     opacity: 0.8;
     color: white;
     align-items: center;
     display: flex;
 }

 .progress .left .persent {
     color: var(--color-brand-yellow);
     margin-left: 8px;
     opacity: 1;
     font-size: 18px;
 }

 .progress .left .bar {
     width: 100%;
     height: 6px;
     border-radius: 16px;
     background: #364763;
     position: relative;
     transition: all 0.4s ease-in-out;
 }

 .progress .left .bar.after:after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     height: 100%;
     width: 50%;
     background: var(--color-brand-yellow);
     border-radius: 16px;
     transition: all 0.4s ease-in-out;

 }

 .progress .right {
     display: flex;
     flex-direction: row;
     gap: 20px;
 }

 .progress .right .arrow {
     display: flex;
     justify-content: center;
     height: 43px;
     gap: 8px;
     align-items: center;
     border-radius: 4px;
     border: 1px solid #f4e4ba;
     cursor: pointer;
     padding: 0 18px;

 }

 .progress .right .span {
     font-size: 18px;
     color: #f4e4ba;
 }

 .progress .right .prev-step {
     width: 43px;
     border: 1px solid #364763;
 }

 .progress .next-step {
     padding: 0 18px !important;
     cursor: pointer;
 }

 .progress .next-step.disable {
     cursor: not-allowed;
 }

 .progress .right .arrow.disable {
     opacity: 0.8;
     padding: 0;
 }

 .th-section {
     position: absolute;
     top: 50%;
     left: 50%;

width: 100%;
     transform: translate(-50%, -50%);
     height: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     gap: 20px;
     transition: all 0.4s ease-in-out;
 }

 .th-section h3 {
     font-size: 28px;
     position: relative;
     line-height: 30px;
     text-align: center;
 }

 .contacts {
    align-items: center;
     width: 100%;
     display: flex;
     max-width: 612px;
     flex-direction: column;
     gap: 12px;
     justify-content: left;
     align-items: start;
 }

 .contacts span {
    width: 100%;
     font-size: 18px;
     text-align: left;
 }

 .contacts-items {
     display: flex;
     flex-direction: column;
     gap: 12px;
     width: 100%;

 }

 .contacts-items .item {
     display: flex;
     flex-direction: row;
     align-items: center;
     gap: 12px;
     width: 100%;
     padding: 12px;
     border-radius: 4px;
     background: #1d293d;
     transition: all 0.3s ease-in-out;
     cursor: pointer;
 }

 .contacts-items .item:hover {
     box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
 }

 .contacts-items .item svg {
     width: 30px;
     height: 30px;
 }

 .checkbox {
    width: 100%;
     margin-top: 10px;
     display: flex;
     flex-direction: row;
     align-items: start;
     gap: 8px;
 }

 .checkbox label {
     font-size: 14px;
 }
.contacts span.hide-group{
    max-height: 0;
}
 .checkbox input[type="checkbox"] {
     width: 16px;
     height: 16px;
     cursor: pointer;
     margin-top: 2px;
 }

 .checkbox label a {
     color: var(--color-brand-yellow);
     text-decoration: none;
     transition: text-decoration 0.3s;
 }

 .checkbox label a:hover {
     text-decoration: underline;
 }

 .phone-input-container {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
 .phone-input-container label {
    font-size: 12px;
    margin-bottom: 6px;
    color: var(--color-white);
    opacity: 0.7;
 }

.phone-input-container #phone-input {
    width: 100%;
    height: 50px;
    padding: 10px 15px;
    font-size: 16px;
    background-color: #1d293d;
    color: #ffffff;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
}
.contacts-section {
    width: 100%;
    max-height: auto;
    transition: all 0.4s ease-in-out;
}
.contacts-section.hide-group{
    max-height: 0;
}
.contacts-section form{
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
}
#name-input{
    width: 100%;
    height: 50px;
    padding: 10px 15px!important;
    margin: 0;
    font-size: 16px;
    background-color: #1d293d;
    color: #ffffff;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
}
.sb-btn{
    width: 100%;
    padding: 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 8px;
    background: transparent;
    opacity: 0.7;
    cursor: pointer;
    color: var(--color-brand-yellow);
    border: 1px solid var(--color-brand-yellow);
}
}
