/* ===================================================
   NECTAFRESH - PREMIUM BOOK APPOINTMENT
===================================================== */

.nf-book-appointment {
    position: relative;
    padding:100px 20px 90px;
    background:
        radial-gradient(circle at 10% 10%, rgba(41, 117, 68, 0.09), transparent 35%),
        linear-gradient(135deg, #f4f8f4 0%, #ffffff 55%, #f7faf7 100%);
    overflow: hidden;
}

.nf-book-appointment::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(41, 117, 68, 0.04);
    top: -200px;
    left: -150px;
}

.nf-appointment-container {
    position: relative;
    z-index: 2;
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 70px;
    align-items: start;
}


/* =====================================================
   LEFT INTRO
===================================================== */

.nf-appointment-intro {
    padding: 45px 0;
    position: relative;
    top: auto
}

.nf-eyebrow {
    display: inline-block;
    color: #287344;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
}

.nf-appointment-intro h1 {
    margin: 0 0 22px;
    color: #15271b;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -1.8px;
    font-weight: 750;
}

.nf-appointment-intro h1 span {
    color: #287344;
}

.nf-intro-text {
    max-width: 590px;
    margin: 0 0 40px;
    color: #627067;
    font-size: 16px;
    line-height: 1.8;
}


/* BENEFITS */

.nf-appointment-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nf-benefit {
    display: flex;
    gap: 18px;
    padding: 18px;
    border-radius: 14px;
    transition: 0.25s ease;
}

.nf-benefit:hover {
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(27, 68, 42, 0.07);
    transform: translateX(4px);
}

.nf-benefit-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #e6f1e9;
    color: #287344;
    font-size: 13px;
    font-weight: 800;
}

.nf-benefit h3 {
    margin: 1px 0 6px;
    color: #1d3023;
    font-size: 16px;
    font-weight: 700;
}

.nf-benefit p {
    margin: 0;
    color: #718078;
    font-size: 13.5px;
    line-height: 1.65;
}


/* TRUST BOX */

.nf-meeting-trust {
    margin-top: 35px;
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    background: #edf6ef;
    border: 1px solid #d9eadd;
    border-radius: 14px;
}

.nf-trust-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    margin-top: 6px;
    background: #2f8b4e;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(47, 139, 78, 0.12);
}

.nf-meeting-trust strong,
.nf-meeting-trust small {
    display: block;
}

.nf-meeting-trust strong {
    color: #25462f;
    font-size: 14px;
    margin-bottom: 4px;
}

.nf-meeting-trust small {
    color: #718078;
    font-size: 12.5px;
    line-height: 1.5;
}


/* =====================================================
   RIGHT FORM CARD
===================================================== */

.nf-appointment-card {
    background: #ffffff;
    border: 1px solid #e3ebe5;
    border-radius: 24px;
    padding: 48px;
    box-shadow:
        0 30px 70px rgba(28, 67, 40, 0.09),
        0 5px 18px rgba(28, 67, 40, 0.04);
}

.nf-card-heading {
    padding-bottom: 28px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e8eee9;
}

.nf-card-heading > span {
    color: #2d7d48;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.nf-card-heading h2 {
    margin: 8px 0 8px;
    color: #172a1d;
    font-size: 31px;
    line-height: 1.2;
}

.nf-card-heading p {
    margin: 0;
    color: #758078;
    font-size: 14px;
}


/* =====================================================
   FORM SECTIONS
===================================================== */

.nf-form-section-title {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}

.nf-form-section-title > span {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #287344;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.nf-form-section-title h3 {
    margin: 0 0 2px;
    color: #203426;
    font-size: 17px;
}

.nf-form-section-title p {
    margin: 0;
    color: #879189;
    font-size: 12px;
}

.nf-section-gap {
    margin-top: 38px;
}


/* GRID */

.nf-form-field{

    width:100%;

}

.nf-form-field input,
.nf-form-field select,
.nf-form-field textarea{

    width:100%;

    max-width:100%;

}

.nf-form-grid {
    display: grid;
    width:100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.nf-full-width {
    grid-column: 1 / -1;
}


/* LABELS */

.nf-form-field label {
    display: block;
    margin-bottom: 8px;
    color: #35483b;
    font-size: 13px;
    font-weight: 650;
}

.nf-form-field label em {
    color: #d34b4b;
    font-style: normal;
}


/* INPUTS */

.nf-appointment-form input[type="text"],
.nf-appointment-form input[type="email"],
.nf-appointment-form input[type="tel"],
.nf-appointment-form input[type="url"],
.nf-appointment-form input[type="date"],
.nf-appointment-form select,
.nf-appointment-form textarea {
    width: 100%;
    box-sizing: border-box;
    min-height: 52px;
    padding: 13px 15px;
    background: #fafcfb;
    border: 1px solid #dce5de;
    border-radius: 10px;
    color: #27372c;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: 0.2s ease;
}

.nf-appointment-form textarea {
    min-height: 125px;
    resize: vertical;
}

.nf-appointment-form input:focus,
.nf-appointment-form select:focus,
.nf-appointment-form textarea:focus {
    background: #ffffff;
    border-color: #3c8c57;
    box-shadow: 0 0 0 3px rgba(60, 140, 87, 0.10);
}

.nf-appointment-form input::placeholder,
.nf-appointment-form textarea::placeholder {
    color: #a0aaa3;
}


/* =====================================================
   MEETING OPTIONS
===================================================== */

.nf-meeting-options .wpcf7-form-control {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.nf-meeting-options .wpcf7-list-item {
    margin: 0;
}

.nf-meeting-options .wpcf7-list-item label {
    min-height: 48px;
    margin: 0;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    background: #fafcfb;
    border: 1px solid #dce5de;
    border-radius: 10px;
    transition: 0.2s ease;
}

.nf-meeting-options .wpcf7-list-item label:hover {
    border-color: #69a77c;
    background: #f4faf5;
}

.nf-meeting-options input[type="radio"] {
    accent-color: #287344;
    width: 17px;
    height: 17px;
}


/* =====================================================
   FOOTER / SUBMIT
===================================================== */

.nf-form-footer {
    margin-top: 28px;
}

.nf-privacy {
    color: #748078;
    font-size: 12.5px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.nf-privacy .wpcf7-list-item {
    margin: 0;
}

.nf-privacy input {
    accent-color: #287344;
}

.nf-appointment-submit {
    width: 100%;
    min-height: 56px;
    border: 0 !important;
    border-radius: 11px !important;
    background: #287344 !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: 0.25s ease !important;
}

.nf-appointment-submit:hover {
    background: #1e5d35 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(40, 115, 68, 0.20);
}

.nf-form-note {
    margin: 13px 0 0;
    text-align: center;
    color: #929b95;
    font-size: 11.5px;
}


/* CF7 MESSAGES */

.nf-appointment-card .wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 13px 15px !important;
    border-radius: 8px;
    font-size: 13px;
}

.nf-appointment-card .wpcf7-not-valid-tip {
    margin-top: 5px;
    font-size: 11px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .nf-appointment-container {
        grid-template-columns: 1fr;
        max-width: 850px;
        gap: 35px;
    }

    .nf-appointment-intro {
        position: relative;
        top: auto;
        padding: 10px 0;
    }

    .nf-appointment-intro h1 {
        max-width: 750px;
    }

    .nf-appointment-benefits {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .nf-book-appointment {
        padding: 55px 15px;
    }

    .nf-appointment-intro h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .nf-intro-text {
        font-size: 14px;
    }

    .nf-appointment-benefits {
        grid-template-columns: 1fr;
    }

    .nf-benefit {
        padding: 14px 5px;
    }

    .nf-appointment-card {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .nf-card-heading h2 {
        font-size: 25px;
    }

    .nf-form-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .nf-full-width {
        grid-column: auto;
    }

    .nf-meeting-options .wpcf7-form-control {
        grid-template-columns: 1fr;
    }

}


/* SMALL MOBILE */

@media (max-width: 420px) {

    .nf-book-appointment {
        padding-left: 12px;
        padding-right: 12px;
    }

    .nf-appointment-intro h1 {
        font-size: 31px;
    }

    .nf-appointment-card {
        padding: 24px 16px;
    }

}
.nf-appointment-container{
    max-width:1320px;
    width:100%;
    margin:auto;

    display:grid;

    grid-template-columns:minmax(320px,420px) minmax(0,1fr);

    gap:50px;

    align-items:start;
}

.nf-appointment-card{

    width:100%;

    max-width:820px;

    justify-self:end;

    box-sizing:border-box;

}