/*-===== Purely Porscha — Homepage style start =======*/


/*-- Header / Menu start --*/

:root {
    --header-height: 88px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-header-bg);
}

.header-top__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 0;
}

.site-logo {
    display: block;
    flex-shrink: 0;
    line-height: 0;
	position: relative;
    top: 10px;
}
.site-logo img {
    height: 67px;
    width: 324px;
    object-fit: contain;
    -webkit-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
}
.site-logo__text {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--fontsize-20);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white, #fff);
    white-space: nowrap;
}

.header-tagline {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    margin: 0;
    letter-spacing: 0;
    text-align: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family:var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
.header-phone:hover { color: var(--color-white); }
.header-phone__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    color: #fff;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
.header-phone__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}
.header-phone:hover .header-phone__icon { color: var(--color-white); }

.header-cta-btn {
    padding: 9px 22px;
    font-size: var(--fontsize-15);
    border: 1px solid rgba(255, 255, 255, 1);
    background-color: #fff;
    color: #4D4D4D;
    font-weight: 400;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;

}
.header-cta-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.menu-toggle { display: none; }

.header-nav-wrap {
    background-color: var(--color-header-bg);
}
.primary-nav > ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    justify-content: center;
}
.primary-nav > ul > li { position: relative; }
.primary-nav > ul > li > a {
    display: block;
    padding: 7px 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 400;
    /* letter-spacing: 1px; */
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
.primary-nav > ul > li > a:hover,
.primary-nav > ul > li.current-menu-item > a {
    color: var(--color-white);
}

.primary-nav ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-heading);
    border-top: 2px solid var(--color-accent);
    list-style: none;
    padding: 6px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.primary-nav ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.primary-nav ul li ul li a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: var(--fontsize-12);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.primary-nav ul li ul li:last-child a { border-bottom: none; }
.primary-nav ul li ul li a:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.06);
    padding-left: 26px;
}

nav#primary-nav {
    margin-top: -28px;
    margin-bottom: 13px;
    margin-left: 58px;
}
.primary-nav > ul > li.menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    margin-left: 5px;
    -webkit-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}
.primary-nav > ul > li.menu-item-has-children:hover > a::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.nav-close-btn,
.nav-footer-cta { display: none; }

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 998;
    opacity: 0;
    -webkit-transition: opacity 0.35s ease-in-out;
    transition: opacity 0.35s ease-in-out;
}
body.body-menu-open .mobile-overlay { display: block; opacity: 1; }

/*-- Header / Menu end ---*/

html {
    scroll-padding-top: var(--header-height, 0);
}

#main-content {
    padding-top: var(--header-height, 0);
}

#loan-cars,
#warranty,
#our-commitment,
#contact {
    scroll-margin-top: var(--header-height, 0);
}

.hero-banner {
    position: relative;
    width: 100%;
    min-height: 632px;
    background-image: url('../../images/img-01.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-banner__inner {
    text-align: center;
    max-width: 956px;
    margin: 0 auto;
    padding: 120px 20px 60px; 
}

.hero-banner h1 {
    font-family: var(--font-display);
    font-size: var(--font-display-lg);
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-white);
    margin-bottom: 37px;
    letter-spacing: 0;
}

.hero-banner__inner p {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    color: var(--color-white);
    margin-bottom: 32px;
}

.hero-banner__inner p + p {
    font-size: clamp(0.875rem, 0.82rem + 0.35vw, 1rem);
    line-height: 1.6;
    margin: clamp(32px, 10vw, 160px) auto 0;
    padding: 0 4px;
}

/*-- Hero Banner end ---*/


/*-- CTA Strip start --*/

.cta-strip {
    background-color: var(--color-black);
    padding: 70px 0;
}
.cta-strip__inner {
    text-align: center;
    max-width: 854px;
    margin: 0 auto;
}
.cta-strip p {
    font-family: var(--font-heading);
    font-size: var(--fontsize-16);
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-white);
    margin-bottom: 32px;
}
.cta-strip__btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--fontsize-15);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-black);
    border: 1px solid var(--color-white);
    padding: 8px 21px;
    background: var(--color-white);
    letter-spacing: 0.5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.cta-strip__btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

/*-- CTA Strip end ---*/


/*-- Split Section start --*/

.split-section {
    display: flex;
    min-height: 600px;
}

/* Flip: image goes right, content goes left */
.split-section--reverse {
    flex-direction: row-reverse;
}

/* White content bg variant (default is --color-bg-cream) */
.split-section--white .split-section__content {
    background-color: var(--color-white);
}

.split-section__image {
    flex: 0 0 50%;
    width: 50%;
    position: relative;
    overflow: hidden;
    min-height: 480px;
}
.split-section__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.split-section__content {
    flex: 0 0 50%;
    width: 50%;
    background-color: var(--color-bg-cream);
    display: flex;
    align-items: center;
}

.split-section__inner {
    padding: 70px 60px 70px 70px;
    max-width: 621px;
    margin: 0 auto;
}

.split-section__inner h2 {
    font-family: var(--font-display);
    font-size: var(--font-display-md);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-black);
    margin-bottom: 28px;
}

.split-section__inner p {
    font-family: var(--font-heading);
    font-size: var(--fontsize-16);
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-black);
    margin-bottom: 20px;
}

.split-section__list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}
.split-section__list li {
    font-family: var(--font-heading);
    font-size: var(--fontsize-16);
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-black);
    margin-bottom: 6px;
}
.split-section__list li:last-child { margin-bottom: 0; }

/*-- Split Section end ---*/


/*-- Book Your Service start --*/
.book-service__form {
    margin-top: 20px;
}
.book-service__inner {
    padding: 70px 40px 70px 40px;
    width: 100%;
}
/* .book-service .split-section__content {
    background-color: var(--color-bg-cream);
} */
.book-service__form-panel {
    background-color: var(--color-white);
    padding: 48px 40px;
    width: 100%;
}
.book-service__form-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 1.35rem + 2.1vw, 2.5rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-black);
    text-align: left;
    margin-bottom: 36px;
    letter-spacing: 0;
}
.book-service__form {
    width: 100%;
}
.book-service .split-section__inner h2 {
    margin-bottom: 14px;
}
.book-service__divider {
    width: 40px;
    border: none;
    border-top: 2px solid var(--color-black);
    margin: 0 0 28px 0;
    opacity: 1;
}
.book-service__btns {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.book-service .split-section__inner p:last-of-type {
    margin-bottom: 0;
}

/*-- Book Your Service end ---*/


/*-- Servicing & Warranty start --*/

.warranty-section {
    background-color: var(--color-bg-cream);
    padding: 90px 0;
}
.warranty-section h2 {
    font-family: var(--font-display);
    font-size: var(--font-display-md);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 60px;
}
.warranty-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 50px;
    row-gap: 0;
}
.warranty-item h3 {
    font-family: var(--font-display);
    font-size: var(--font-display-sm);
    font-weight: 400;
    line-height: 1.35;
    color: var(--color-black);
    margin-bottom: 20px;
}
.warranty-item p {
    font-family: var(--font-heading);
    font-size: var(--fontsize-16);
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-black);
    margin-bottom: 0;
}

/*-- Servicing & Warranty end ---*/


/*-- Local Convenience start --*/

.convenience-section {
    background-color: var(--color-white);
    padding: 90px 0;
}
.convenience-section__inner {
    text-align: center;
    max-width: 1064px;
    margin: 0 auto;
}
.convenience-section h2 {
    font-family: var(--font-display);
    font-size: var(--font-display-md);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-black);
    margin-bottom: 36px;
}
.convenience-section__inner p {
    font-family: var(--font-heading);
    font-size: var(--fontsize-16);
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-black);
    margin-bottom: 24px;
}
.convenience-section__body > :last-child {
    margin-bottom: 24px;
}

/*-- Local Convenience end ---*/


/*-- Why Section start --*/

.why-section {
    background-color: var(--color-white);
    padding: 90px 0 80px;
}

.why-section h2 {
    font-family: var(--font-display);
    font-size: var(--font-display-md);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-black);
    text-align: center;
    max-width: 945px;
    margin: 0 auto 60px;
}

.why-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 48px;
}

.why-item h3 {
    font-family: var(--font-display);
    font-size: var(--font-display-sm);
    font-weight: 400;
    line-height: 1.35;
    color: var(--color-black);
    margin-bottom: 16px;
}

.why-item p {
    font-family: var(--font-heading);
    font-size: var(--fontsize-16);
    font-weight: 400;
    line-height: 1.65;
    color: var(--color-black);
    margin-bottom: 0;
}

.why-item--cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*-- Why Section end ---*/


/*-- Contact Section start --*/

.contact-section {
    background-color: var(--color-black);
    padding: 80px 0;
}
.contact-section__inner {
    max-width: 560px;
    margin: 0 auto;
}
.contact-section h2 {
    font-family: var(--font-display);
    font-size: var(--font-display-lg);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 0;
}
.contact-section__form {
    text-align: left;
}

.contact-form__field {
    margin-bottom: 28px;
}
.contact-form__label {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--fontsize-14);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-white);
    margin-bottom: 12px;
}
.contact-form__label span { color: var(--color-accent); }
.contact-form__input {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 0;
    padding: 8px 0;
    font-family: var(--font-heading);
    font-size: var(--fontsize-14);
    font-weight: 400;
    color: var(--color-white);
    background: transparent;
    outline: none;
    -webkit-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
}
.contact-form__input::placeholder {
    color: rgba(255, 255, 255, 0.45);
    opacity: 1;
}
.contact-form__input:focus {
    border-bottom-color: var(--color-black);
}
.contact-form__textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.6;
}
.contact-form__submit {
    display: block;
    width: 100%;
    font-family: var(--font-heading);
    font-size: var(--fontsize-15);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-black);
    background-color: var(--color-white);
    border: none;
    padding: 16px 0;
    cursor: pointer;
    margin-top: 12px;
    -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.contact-form__submit:hover {
    background-color: rgba(255, 255, 255, 0.88);
    color: var(--color-black);
}

/* Contact Form 7 — homepage contact section */
.contact-section__form .wpcf7 {
    margin: 0;
}
.contact-section__form .wpcf7-form {
    margin: 0;
}
.contact-section__form .wpcf7-form p {
    margin: 0;
}
.contact-section__form .wpcf7-form label {
    display: block;
}
.contact-section__form .wpcf7-not-valid-tip {
    font-family: var(--font-body);
    font-size: var(--fontsize-13);
    color: #ff8a8a;
    margin-top: 4px;
}
.contact-section__form .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: var(--fontsize-14);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 0;
}
.contact-section__form .wpcf7 form.invalid .wpcf7-response-output,
.contact-section__form .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-section__form .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ff8a8a;
    color: #ff8a8a;
}
.contact-section__form .wpcf7 form.sent .wpcf7-response-output {
    border-color: #7dcea0;
    color: #7dcea0;
    text-align: center;
}
.contact-section__form .wpcf7 form.invalid .wpcf7-response-output,
.contact-section__form .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-section__form .wpcf7 form.payment-required .wpcf7-response-output {
    display: none;
}
.contact-section__form .wpcf7-spinner {
    display: block;
    margin: 12px auto 0;
}

/*-- Contact Section end ---*/


/*-- Footer start --*/

.site-footer {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: 24px 0;
}
.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-footer__copy {
    text-align: center;
}
.site-footer__copy p {
    font-family: var(--font-heading);
    font-size: var(--fontsize-14);
    font-weight: 400;
    line-height: 22px;
    color: #000;
    margin-bottom: 0;
}
.site-footer__copy a {
    color: var(--color-body);
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
.site-footer__copy a:hover { color: var(--color-black); }

.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--color-text-dark);
    font-size: var(--fontsize-16);
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}
.site-footer__social-link:hover { color: var(--color-black); }

/*-- Footer end ---*/


/*-- Shared Helpers start --*/

.section-pad     { padding: 70px 0; }
.section-pad--lg { padding: 90px 0; }

/*-- Shared Helpers end ---*/


/*===== Book Now Page style start =====*/

/*-- Book Now Hero start --*/

.book-page-hero {
    background-color: var(--color-white);
    padding: 40px 0 95px;
}
.book-page-hero__inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.book-page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 1.5rem + 2.5vw, 3.125rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-black);
    margin-bottom: 28px;
    letter-spacing: 0;
    text-transform: uppercase;
}
.book-page-hero p {
    font-family: var(--font-display);
    font-size: clamp(1rem, 0.92rem + 0.4vw, 1.25rem);
    font-weight: 400;
    line-height: 1.55;
    color: var(--color-black);
    margin-bottom: 0;
}
.book-page-hero p + p {
    margin-top: 6px;
}
.book-page-hero a {
    color: inherit;
    text-decoration: none;
}
.book-page-hero a:hover {
    color: var(--color-black);
    text-decoration: underline;
}

/*-- Book Now Hero end ---*/


/*-- Book Now Content start --*/

.book-content-section {
    background-color: var(--color-white);
    padding: 0 0 90px;
}
.book-content-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(40px, 6vw, 100px);
    align-items: start;
}
.book-form-col h2,
.book-software-col h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 1.35rem + 2.1vw, 2.5rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-black);
    margin-bottom: 40px;
    letter-spacing: 0;
}
.book-form-col h2 {
    text-align: center;
}
.book-software-col {
    padding-top: 0;
    text-align: center;
}
.book-software-col h2 {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/*-- Book Now Content end ---*/


/*-- Book Now Form start --*/

.book-form__row--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
}
.book-form__field {
    margin-bottom: 28px;
}
.book-form__label {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--fontsize-14);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-black);
    margin-bottom: 12px;
}
.book-form-col .wpcf7-form-control-wrap {
    display: block;
}
.book-service__form-panel a
{
	color:var(--color-black)
}
.book-form
{
	margin-top:20px
}
.book-form__label span { color: var(--color-accent); }
.book-form .book-form__input,
.book-form-col .wpcf7-form-control:not(.wpcf7-submit),
.book-form-col input[type="date"] {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--color-black);
    border-radius: 0;
    padding: 10px 0 8px;
    margin-top: 0;
    font-family: var(--font-heading);
    font-size: var(--fontsize-14);
    font-weight: 400;
    color: var(--color-black);
    background: transparent;
    outline: none;
    -webkit-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
}
.book-service__form .wpcf7-form-control:not(.wpcf7-submit),
.book-service__form .book-form__input,
.book-service__form input[type="text"],
.book-service__form input[type="email"],
.book-service__form input[type="tel"],
.book-service__form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--color-form-border);
    border-radius: 0;
    padding: 10px 0 8px;
    margin-top: 0;
    font-family: var(--font-heading);
    font-size: var(--fontsize-14);
    font-weight: 400;
    color: var(--color-black);
    background: transparent;
    outline: none;
    -webkit-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
}
.book-service__form textarea
{
    height: 116px;
    resize: none;
}
.book-form .book-form__input:focus,
.book-form-col .wpcf7-form-control:not(.wpcf7-submit):focus,
.book-service__form .wpcf7-form-control:not(.wpcf7-submit):focus,
.book-service__form .book-form__input:focus,
.book-service__form input[type="text"]:focus,
.book-service__form input[type="email"]:focus,
.book-service__form input[type="tel"]:focus,
.book-service__form textarea:focus {
    border-color: transparent;
    border-bottom-color: var(--color-black);
    outline: none;
}
.book-form .book-form__input::placeholder,
.book-service__form .wpcf7-form-control::placeholder,
.book-service__form input::placeholder,
.book-service__form textarea::placeholder {
    color: transparent;
    opacity: 0;
}
.book-form__textarea {
    resize: vertical;
    line-height: 1.6;
}
.book-form-col .book-form__textarea {
    min-height: 40px;
    resize: none;
    height: 100px;
}
.book-service__form .book-form__textarea {
    min-height: 72px;
}
.book-form__field--date .book-form__date-wrap {
    position: relative;
    display: flex;
    align-items: flex-end;
}
.book-form__field--date .book-form__date-wrap::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin: 0 10px 10px 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.book-form__field--date .book-form__date {
    flex: 1;
    min-width: 0;
    padding-left: 0;
}
.book-form__field--date .book-form__date::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.book-form-col .wpcf7-not-valid,
.book-service__form .wpcf7-not-valid {
    border-bottom-color: #c0392b;
}
.book-form__submit {
    display: block;
    width: 100%;
    font-family: var(--font-heading);
    font-size: var(--fontsize-15);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-white);
    background-color: var(--color-black);
    border: none;
    padding: 8px 28px;
    cursor: pointer;
    margin-top: 4px;
    box-shadow: none;
    -webkit-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}
.book-form__submit:hover {
    background-color: var(--color-text-dark);
}
.book-form-col .book-form,
.book-form-col .wpcf7{
    max-width: 470px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form 7 — Book Now + homepage contact */

.book-form-col .wpcf7-form,
.book-service__form .wpcf7-form {
    margin: 0;
}
.book-form-col .wpcf7-form label,
.book-service__form .wpcf7-form label {
    display: block;
}
.book-form-col .wpcf7-form label.book-form__label,
.book-form-col .book-form__label {
    margin-bottom: 0px;
}
.book-form__field br {
    display: none;
}
.book-service__form .wpcf7-form label.book-form__label {
    margin-bottom: 0;
}
.book-form-col .wpcf7-form p,
.book-service__form .wpcf7-form p {
    margin: 0;
    width: 100%;
}
.book-form-col .wpcf7-form p:has(.book-form__submit),
.book-service__form .wpcf7-form p:has(.book-form__submit) {
    margin-top: 4px;
}
.book-form-col .wpcf7-not-valid-tip,
.book-service__form .wpcf7-not-valid-tip {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.4;
    color: #c0392b;
    margin-top: 8px;
    display: none;
}
.book-service__form .wpcf7-not-valid-tip:last-of-type,.book-form-col .wpcf7-not-valid-tip:last-of-type {
    display: flex;
}
.book-form-col .wpcf7-not-valid-tip::before,
.book-service__form .wpcf7-not-valid-tip::before {
    content: '!';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-top: 1px;
    border: 1px solid #c0392b;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}
.book-form-col .wpcf7-response-output,
.book-service__form .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: var(--fontsize-14);
    border: 1px solid var(--color-black);
    border-radius: 0;
}
.book-form-col .wpcf7 form.invalid .wpcf7-response-output,
.book-form-col .wpcf7 form.unaccepted .wpcf7-response-output,
.book-form-col .wpcf7 form.payment-required .wpcf7-response-output,
.book-service__form .wpcf7 form.invalid .wpcf7-response-output,
.book-service__form .wpcf7 form.unaccepted .wpcf7-response-output,
.book-service__form .wpcf7 form.payment-required .wpcf7-response-output {
    text-align: center;
    margin: 0;
}
.book-form-col .wpcf7 form.sent .wpcf7-response-output,
.book-service__form .wpcf7 form.sent .wpcf7-response-output {
    border-color: #27ae60;
    color: #27ae60;
    text-align: center;
}
.book-form-col .wpcf7-spinner,
.book-service__form .wpcf7-spinner {
    display: block;
    margin: 12px auto 0;
}

/*-- Book Now Form end ---*/


/*-- Workshop Software start --*/

.book-software-btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--fontsize-15);
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-white);
    background-color: var(--color-black);
    border: 1px solid var(--color-black);
    padding: 14px 28px;
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    -webkit-transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
    transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.book-software-btn:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

/*-- Workshop Software end ---*/


/*-- Book Now Map start --*/

.book-map {
    width: 100%;
    line-height: 0;
}
.book-map iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: 0;
    filter: grayscale(30%);
}
.book-page-hero__image {
    margin-top: 30px;
    height: 430px;
    overflow: hidden;
}
.book-page-hero__image  img
{
	width: 100%;
    object-fit: cover;
    object-position: center;
}
/*-- Book Now Map end ---*/


/*======= Book Now Page style end =======*/


/*======= Purely Porscha Homepage style end =======*/
