 /* Main Container */
 .quarry-contact-form-container {
     max-width: 1080px;
     margin: 0 auto;
     padding: 50px 100px;
     background-color: #262626;
     color: #fff;
     border-radius: 16px;
     font-family: "Geologica", sans-serif;
 }

 .quarry-form-header {
     display: flex;
     align-items: flex-end;
     column-gap: 38px;
     width: 100%;
     margin-bottom: 36px;
 }

 .quarry-form-header h2 {
     font-family: "Montserrat", sans-serif;
     font-weight: 700;
     font-size: 38px;
     line-height: 110%;
     color: #fbfbfb;
     margin-bottom: 12px !important;
 }

 .quarry-form-header p {
     font-weight: 400;
     font-size: 16px;
     line-height: 130%;
     color: #e8e6e2;
     max-width: 270px !important;
 }

 .quarry-form-header-left {
     max-width: 448px;
     width: 100%;
 }

 .quarry-form-alt-contact {
     color: #ccc;
 }

 .quarry-form-content {
     display: flex;
     flex-wrap: wrap;
     gap: 38px;
     align-items: flex-start;
 }

 .quarry-form-inputs {
     flex: 1;
     min-width: 300px;
     max-width: 448px;
 }

 .quarry-info-blocks {
     border: 1px solid #7d7d7d;
     border-radius: 8px;
     flex: 1;
     padding: 50px 64px;
     max-width: 388px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     gap: 46px;
 }

 /* Form Elements */
 .form-field {
     position: relative;
     margin-bottom: 27px;
 }

 .form-field select:focus option.placeholder-option {
     display: none;
 }

 .form-field select option.placeholder-option {
     display: none;
 }

 .form-field label {
     position: absolute;
     top: 18px;
     left: 22px;
     font-size: 16px;
     transition: all 0.2s ease;
     pointer-events: none;
     display: block;
     font-family: "Geologica", sans-serif;
     font-weight: 300 !important;
     font-size: 16px;
     color: #a9a7a3;
     transition: color .3s linear;
 }

 .form-field label.active {
     top: -15px;
     left: 0;
     font-size: 10px;
     color: #e8e6e2;
 }


 .form-field input:focus+label,
 .form-field input:not(:placeholder-shown)+label,
 .form-field textarea:focus+label,
 .form-field textarea:not(:placeholder-shown)+label {
     top: -15px;
     left: 0;
     font-size: 10px;
     color: #e8e6e2;
 }

 .field-textarea {
     margin-bottom: 24px !important;
     max-height: 114px;
 }

 .form-field input:focus-visible,
 .form-field textarea:focus-visible,
 .form-field select:focus-visible {
     outline: none !important;
 }

 .form-field input[type="text"],
 .form-field input[type="tel"],
 .form-field input[type="email"],
 .form-field textarea,
 .form-field select {
     width: 100%;
     max-height: 50px;
     padding: 12px 20px;
     background-color: #fbfbfb;
     color: #272725;
     border-radius: 10px;
     font-family: "Geologica", sans-serif;
     font-weight: 300;
     font-size: 16px;
     box-sizing: border-box;
     transition: border .3s linear;
     border: 2px solid transparent;
 }

 .form-field textarea {
     max-height: 114px !important;
 }

 .form-field:hover input,
 .form-field:hover textarea,
 .form-field:hover input[type="checkbox"],
 .form-field:hover select {
     border: 2px solid var(--p1) !important;
 }

 .form-field:not(.consent-field):hover label,
 .form-field:not(.consent-field):hover label.error {
     color: var(--tekst-1);
 }

 .consent-field:not(.consent-field):hover label,
 .consent-field:not(.consent-field):hover label.error {
     color: var(--p1) !important;
 }

 .form-field:hover label:not(label.active) {
     color: var(--tekst-1) !important;
 }

 /* Стили для полей с ошибками валидации */
 /* .form-field input::placeholder,
.form-field textarea::placeholder {
    color: #a9a7a3;
    opacity: 1;
} */

 /* .form-field input:not(:focus):not(:placeholder-shown):invalid,
.form-field textarea:not(:focus):not(:placeholder-shown):invalid,
.form-field select.error {
    border: 1px solid #F93428;
} */

 /* Стили для label с ошибками */
 .form-field label.error,
 .form-field label.error a {
     color: #F93428 !important;
 }

 /* .form-field:hover label.error a {
    color: var(--p1) !important;
} */

 /* Стиль для ошибки согласия */
 .consent-field.error input[type="checkbox"] {
     border: 2px solid #F93428;
 }

 .form-field textarea {
     min-height: 114px;
     resize: vertical;
 }

 .form-field select {
     appearance: none;
     padding-right: 30px;
 }

 .select-icon {
     position: absolute;
     display: flex;
     align-items: center;
     justify-content: center;
     right: 26px;
     top: 50%;
     transform: translateY(-50%);
     pointer-events: none;
     transition: transform 0.3s ease;
     width: 10px;
     height: 7px;
 }

 .select-icon svg {
     width: 10px;
     height: 7px;
     fill: #5E5D5C;
     transition: fill .3s linear;
 }

 .form-field:hover .select-icon svg {
     fill: var(--p1) !important;
 }

 .form-field select:focus+.select-icon {
     transform: translateY(-50%) rotate(180deg);
 }

 /* Consent Field */
 .consent-field {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     margin-bottom: 24px !important;
 }

 .consent-field input[type="checkbox"] {
     appearance: none;
     width: 20px;
     height: 20px;
     background-color: #fff;
     border: 1px solid transparent;
     border-radius: 3px;
     transition: background-color 0.3s linear, border 0.3s linear;
     cursor: pointer;
 }

 .consent-field input[type="checkbox"]:checked {
     background-color: #e18701;
     border-color: #e18701;
     position: relative;
 }

 .consent-field input[type="checkbox"]:checked::after {
     content: "";
     position: absolute;
     top: 2px;
     left: 6px;
     width: 5px;
     height: 10px;
     border: solid #fff;
     border-width: 0 2px 2px 0;
     transform: rotate(45deg);
 }

 .consent-field label {
     position: static;
     color: #a9a7a3 !important;
     margin: 0;
     transition: none;
     cursor: pointer;
     pointer-events: auto;
     font-weight: 300 !important;
     font-size: 14px !important;
 }

 .consent-field a {
     text-decoration: underline !important;
     color: #e8e6e2 !important;
     transition: color .3s linear;
     cursor: pointer;
 }

 .consent-field a:hover {
     color: #e18701 !important;
 }

 /* Submit Button */
 .submit-field button {
     width: 100%;
     padding: 12px;
     background-color: #ffa800;
     font-weight: 400;
     font-size: 16px;
     line-height: 130%;
     text-align: center;
     color: #fbfbfb;
     border: none;
     border-radius: 8px;
     cursor: pointer;
     transition: background-color 0.3s;
 }

 .submit-field button:focus {
     background-color: #ffa800 !important;
 }

 .submit-field button:hover {
     background-color: #e18701;
 }

 .submit-field button:disabled {
     background-color: #7a6943;
     cursor: not-allowed;
 }

 .submit-field {
     margin-bottom: 0 !important;
 }

 /* Form Messages */
 .form-messages {
     margin-top: 15px;
 }

 .success-message {
     padding: 10px;
     background-color: rgba(39, 174, 96, 0.2);
     border-left: 3px solid #27ae60;
     color: #2ecc71;
 }

 .error-message {
     padding: 10px;
     background-color: rgba(231, 76, 60, 0.2);
     border-left: 3px solid #e74c3c;
     color: #e74c3c;
 }

 /* Quarry Info Blocks */
 .quarry-info-block {
     transition: all 0.3s ease;
 }

 .quarry-info-block.active {
     opacity: 1;
 }

 .quarry-info-block.inactive {
     opacity: 0.3;
 }

 .quarry-info-block h3 {
     font-weight: 500;
     font-size: 18px;
     color: #ffa800;
     margin-bottom: 12px !important;
 }

 .quarry-phone a {
     font-family: "Montserrat", sans-serif;
     font-weight: 700;
     font-size: 20px;
     line-height: 120%;
     color: #e8e6e2;
     text-decoration: none;
     transition: color .3s linear;
 }

 .quarry-phone:hover a {
     color: #e18701;
 }

 .quarry-worktime {
     margin-bottom: 4px;
 }

 .quarry-worktime p {
     font-weight: 300;
     font-size: 14px;
     color: #a9a7a3;
 }

 .quarry-whatsapp {
     margin-bottom: 6px;
 }

 .quarry-whatsapp svg {
     fill: #FFA800;
     width: 24px;
     height: 24px;
     margin-right: 6px;
     transition: fill .3s linear;
 }

 .quarry-whatsapp a,
 .quarry-email a {
     font-weight: 300;
     font-size: 16px;
     line-height: 130%;
     color: #e8e6e2;
     transition: color .3s linear;
     display: flex;
     align-items: center;
 }

 .quarry-whatsapp:hover a,
 .quarry-email:hover a {
     color: #e18701;
 }

 .quarry-whatsapp:hover svg {
     fill: #e18701;
 }

 .quarry-email svg {
     stroke: #FFA800;
     width: 24px;
     height: 24px;
     margin-right: 6px;
     transition: stroke .3s linear;
 }

 .quarry-email:hover svg {
     stroke: #e18701;
 }

 .field-help-text {
     font-weight: 300;
     font-size: 10px;
     color: var(--text-4-svetlyy-dlya-temnogo);
     color: #F93428;
 }

 .quarry-form-header-right-mobile,
 .mobile-form-phone {
     display: none !important;
 }

 .quarry-phone > div {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-4-svetlyy-dlya-temnogo);
 }

 
.consent-supplier.mobile-label {
    display: none !important;
}

 @media screen and (max-width: 1279px) {
     .quarry-info-blocks {
         padding: 50px 30px;
         max-width: 50%;
     }

     .quarry-form-header-left {
         max-width: 50%;
     }

     .quarry-form-inputs {
         min-width: 50%;
     }
 }

 @media screen and (max-width: 1023px) {
     .quarry-contact-form-container {
         padding: 30px;
     }

     .quarry-form-header h2 {
         font-size: 30px;
     }

     .quarry-form-header {
         margin-bottom: 30px;
     }


     .quarry-info-blocks {
         padding: 38px 30px;
     }
 }

 @media screen and (max-width: 959px) {
    .quarry-phone a {
        font-size: 16px;
    }
 }

 @media screen and (max-width: 767px) {
     .quarry-form-content {
         flex-direction: column;
     }

     .quarry-form-inputs,
     .quarry-info-blocks {
         max-width: 100%;
         width: 100%;
     }

     .quarry-form-header-right {
         display: none;
     }

     .quarry-form-header-right-mobile {
         display: inline-block;
     }

     .quarry-form-header-left {
         max-width: 100%;
     }

     .quarry-form-header h2 {
         font-size: 26px;
         margin-bottom: 10px !important;
     }

     .quarry-form-content {
         gap: 20px;
     }

     .quarry-form-inputs {
         margin-bottom: 25px !important;
     }

     .quarry-info-blocks {
         padding: 20px 27px;
     }

     .quarry-info-blocks {
         gap: 30px;
     }

     .quarry-form-header p {
         max-width: 100% !important;
     }

     .quarry-phone {
         display: none !important;
     }

     .mobile-form-phone {
         display: flex !important;
     }

     .quarry-contact-form-container {
        padding: 16px;
     }
 }

 @media screen and (max-width: 550px) {}

 @media screen and (max-width: 474px) {}

 @media screen and (max-width: 424px) {}

 @media screen and (max-width: 374px) {}