/* hero  */
.book-valuation-hero {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    background-color: #09203D;
    justify-content: center;
}

@media (max-width: 767px) {
    .book-valuation-hero {
        padding: 32px 16px !important;
    }

    .book-valuation-hero .book-valuation-wrapper .book-valuation-content h1 {
        font-size: 48px !important;
    }

    .book-valuation-hero .book-valuation-wrapper .book-valuation-content p {
        font-size: 18px !important;
    }
}

.book-valuation-hero .book-valuation-wrapper {
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.book-valuation-hero .book-valuation-wrapper .book-valuation-content {
    width: 100%;
    text-align: center;
}

.book-valuation-hero .book-valuation-wrapper .book-valuation-content h1 {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #fff;
}

.book-valuation-hero .book-valuation-wrapper .book-valuation-content p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 32px;
}


/* end of hero  */


/* valuation form  */


/* end of valuation form  */


/* selling with nicholson and woolf  */

.selling-nw {
    width: 100%;
    position: relative;
    background-image: url('https://nicholsonandwoolf.com/wp-content/uploads/2026/02/53587210.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: .3s background-size ease-in-out;
}

.selling-nw:hover {
    background-size: 105%;
}

.selling-nw:hover::before {
    background-color: rgba(0, 0, 0, .4);
}

@media (max-width: 767px) {
    .selling-nw {
        background-size: cover;
    }

    .selling-nw a {
        padding: 100px 32px !important;
    }
}

@media (max-width: 576px) {
    .selling-nw a span {
        font-size: clamp(24px, 5vw, 32px) !important;
    }

    .selling-nw a svg {
        width: 64px !important;
        height: 64px !important;
        min-width: 64px !important;
    }
}

.selling-nw::before {
    position: absolute;
    content: '';
    inset: 0;
    background-color: rgba(0, 0, 0, .2);
    z-index: 1;
    transition: .3s background-color ease-in-out;
}

.selling-nw a {
    display: flex;
    align-items: center;
    padding: 10% 5%;
    gap: 20px;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: #fff!important;
    z-index: 2;
    position: relative;
    justify-content: space-between;
}

.selling-nw a span {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
}

.selling-nw a svg {
    width: 96px;
    height: 96px;
    min-width: 96px;
    max-width: 100%;
    fill: #fff;
}

/* end of selling with  */

/* book valuation  */

.valuation-form {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .valuation-form {
        padding: 32px 16px !important;
    }
}

.valuation-form .valuation-wrapper {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.valuation-form .valuation-wrapper .valuation-intro {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.valuation-form .valuation-wrapper .valuation-intro a {
    color: #000;
}

.valuation-form .valuation-wrapper .valuation-intro a:hover {
    text-decoration: none;
}

.valuation-form .valuation-wrapper .valuation-intro h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
}

.valuation-form .valuation-wrapper #book-valuation-form {
    width: 100%;
}

.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper {
    width: 100%;
    position: relative;
    margin-bottom: 16px;
}

.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper.error::before {
    position: absolute;
    left: -16px;
    top: 0;
    content: '';
    height: 100%;
    width: 8px;
    background-color: red;
}

.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper input[type="text"],
.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper input[type="email"],
.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper input[type="tel"] {
    height: 50px;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid #ccc;
    width: 100%;
}

.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper textarea {
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid #ccc;
    width: 100%;
}

.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper input,
.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper textarea {
    transition: border-color .3s ease-in-out, background-color .3s ease-in-out, box-shadow .3s ease-in-out;

}

.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper:focus-within input,
.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper:focus-within textarea {
    outline: 0;
    border-color: #bf9903 !important;
    background-color: #f6f3ff;
    box-shadow:
        0 0 0 2px #fff,
        0 0 0 4px #bf9903
}

.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper .error-message {
    color: red;
    font-size: 12px;
    display: none;
}

.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper.error .error-message {
    display: flex;
    margin-top: 8px;
}

.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper .consent-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper .consent-wrapper input[type="checkbox"] {
    accent-color: #bf9903;
}

.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper .consent-wrapper a {
    color: #000;
}

.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper .consent-wrapper span {
    font-size: 14px;
}

.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper .consent-wrapper a:hover {
    text-decoration: none;
}

.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper #book-valuation-form-submit-btn {
    margin-top: 16px;
}

.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper #book-valuation-form-submit-btn:disabled {
    background-color: grey;
}

.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper #book-valuation-form-submit-btn {
	display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 16px;
    background-color: #004155;
    color: #fff;
    border: 1px solid transparent;
    text-decoration: none;
    transition: .2s ease-in-out;
}

.valuation-form .valuation-wrapper #book-valuation-form .form-input-wrapper #book-valuation-form-submit-btn:hover {
	border: 1px solid #004155;
    color: black;
    background: transparent;
}

/* end of book valuation  */