/* ─── Contact Us Block ────────────────────────────────────────────────────── */

/* ── Section wrapper ───────────────────────────────────────────────────── */
.pp-contact-us {
    position: relative;
    padding: 70px 0;
    background-color: var(--bgcreame);
    overflow: hidden;
}

/* ── Decorative leaf images ─────────────────────────────────────────────── */
.pp-contact-us__deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}

.pp-contact-us__deco--left {
    left: -10px;
    bottom: -20px;
    width: clamp(120px, 15vw, 200px);
}

.pp-contact-us__deco--right {
    right: -10px;
    bottom: -20px;
    width: clamp(120px, 15vw, 200px);
}

/* ── Inner two-column layout ────────────────────────────────────────────── */
.pp-contact-us__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0 50px;
    align-items: center;
}

/* ────────────────────────────────────────────────────────────────────────── */
/* LEFT INFO PANEL                                                            */
/* ────────────────────────────────────────────────────────────────────────── */
.pp-contact-info {
    padding-top: 10px;
}

/* Label */
.pp-contact-info__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--global-font-family);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 50px;
    position: relative;
}

.pp-contact-info__label::after {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--orange);
    border-radius: 8px;
    position: absolute;
    bottom: -10px;
    left: 0;
}

/* Heading */
.pp-contact-info__heading {
    margin: 0 0 25px;
}
.pp-contact-info__heading span{
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--global-font-family);
    text-transform: uppercase;
}

.pp-contact-info__heading-line1 {
    color: var(--blue);
}

.pp-contact-info__heading-line2 {
    color: var(--orange);
}

/* Subtext */
.pp-contact-info__subtext {
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Contact item list */
.pp-contact-info__list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.pp-contact-info__item {
    gap: 25px;
    background:var(--bgcreame);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.pp-contact-info__item > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pp-contact-info__item strong {
    font-size: 16px;
    font-weight: 700;
    line-height:1.2;
    color: var(--blue);
    font-family: var(--global-font-family);
}

.pp-contact-info__item p {
    margin: 0;
    font-size: 14px;
    color: var(--grey);
    line-height: 1.4;
    font-family: var(--global-body-font-family);
}

.pp-contact-info__item p a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pp-contact-info__item p a:hover {
    color: var(--orange, #E8845C);
}

/* Icon badge */
.pp-contact-info__icon {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    background:#feece0;
}
.pp-contact-info__icon svg{width:30px;height:30px;}

/* .pp-contact-info__icon--address { background: var(--green, #4A7C59); }
.pp-contact-info__icon--phone   { background: var(--green, #4A7C59); }
.pp-contact-info__icon--email   { background: var(--green, #4A7C59); } */

/* Food image at bottom of left panel */
.pp-contact-info__food-img {
    margin-top: 12px;
    width: 100%;
    max-width: 320px;
}

.pp-contact-info__food-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.12));
}

/* ────────────────────────────────────────────────────────────────────────── */
/* CENTRE DIVIDER                                                             */
/* ────────────────────────────────────────────────────────────────────────── */
.pp-contact-us__divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-top: 24px;
    width: 40px;
}

.pp-contact-us__divider-line {
    flex: 1;
    width: 1px;
    min-height: 120px;
    background: repeating-linear-gradient(
        to bottom,
        rgb(255 87 50 / 30%) 0px,
        rgb(255 87 50 / 30%) 6px,
        transparent 6px,
        transparent 12px
    );
}

.pp-contact-us__divider-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid rgb(255 87 50 / 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    margin: 10px 0;
}
.pp-contact-us__divider-icon i{color:var(--orange);font-size:28px;}
.pp-contact-us__divider-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* ────────────────────────────────────────────────────────────────────────── */
/* RIGHT FORM PANEL                                                           */
/* ────────────────────────────────────────────────────────────────────────── */
.pp-contact-form {
    /* stretches to full height of left column */
}

.pp-contact-form__card {
    background: var(--bgcreame);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Form heading */
.pp-contact-form__heading {
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    font-weight: 800;
    color: var(--orange);
    text-align: center;
    margin: 0 0 6px;
    text-transform: uppercase;
}

/* Subtext */
.pp-contact-form__subtext {
    font-size: 14px;
    color: var(--blue);
    text-align: center;
    margin: 0 0 50px;
}

.pp-contact-form__required {
    color: var(--orange, #E8845C);
    font-weight: 700;
    margin-left: 2px;
}

/* ── Field grid ─────────────────────────────────────────────────────────── */
.pp-contact-form__fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pp-contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.pp-contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pp-contact-form__group--full {
    grid-column: 1 / -1;
}

.pp-contact-form__group label {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--dark, #1a1a1a);
}

.pp-contact-form__group input,
.pp-contact-form__group textarea {
    width: 100%;
    border: 1.5px solid #e4dbd0;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.88rem;
    font-family: inherit;
    color: var(--dark, #1a1a1a);
    background: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    box-sizing: border-box;
    resize: vertical;
}

.pp-contact-form__group input::placeholder,
.pp-contact-form__group textarea::placeholder {
    color: #b0a898;
}

.pp-contact-form__group input:focus,
.pp-contact-form__group textarea:focus {
    border-color: var(--orange, #E8845C);
    box-shadow: 0 0 0 3px rgba(232, 132, 92, 0.12);
    background: #fff;
}
.pp-contact-form__cf7 .pp-row{display:flex;align-items: flex-start;justify-content: space-between;gap:30px;}
.pp-contact-form__cf7 .pp-row .pp-col{width:50%;}
.pp-contact-form__cf7 .pp-row .pp-col.pp-full{width:100%;}
.pp-contact-form__cf7 .pp-col label{font-size:14px;font-family: var(--global-font-family);font-weight: 600;padding-bottom: 7px;}
.pp-contact-form__cf7 .pp-col input[type="text"], .pp-contact-form__cf7 .pp-col input[type="email"], .pp-contact-form__cf7 .pp-col input[type="textarea"], .pp-contact-form__cf7 .pp-col input[type="tel"]{
    border-color:#eceae9;border-radius:10px;padding:12px 15px;font-size:14px;color: var(--black);
}
.pp-contact-form__cf7 .pp-col input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: var(--grey);font-size:14px;
  }
  .pp-contact-form__cf7 .pp-col input::-moz-placeholder { /* Firefox 19+ */
    color: var(--grey);font-size:14px;
  }
  .pp-contact-form__cf7 .pp-col input:-ms-input-placeholder { /* IE 10+ */
    color: var(--grey);font-size:14px;
  }
  .pp-contact-form__cf7 .pp-col input:-moz-placeholder { /* Firefox 18- */
    color: var(--grey);font-size:14px;
  }

/* ── Privacy checkbox ───────────────────────────────────────────────────── */
.wpcf7-acceptance label{display:flex;align-items:center;justify-content: flex-start;gap:10px;}
.wpcf7-acceptance label input[type=checkbox] {
    accent-color: var(--blue);
  }
  .pp-contact-form .wpcf7-not-valid-tip, .pp-contact-form__cf7 .pp-col label span{font-size:14px;}
  
.wpcf7-acceptance .wpcf7-list-item{margin:0px;}
.pp-contact-form__cf7 .wpcf7-acceptance label input{width:13px;}
.pp-contact-form__privacy {
    margin: 4px 0 2px;
}

.pp-contact-form__privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: #666;
    cursor: pointer;
    line-height: 1.5;
}

.pp-contact-form__privacy-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--orange, #E8845C);
    cursor: pointer;
}

.pp-contact-form__privacy-label a {
    color: var(--orange, #E8845C);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.pp-contact-form__privacy-label a:hover {
    opacity: 0.75;
}

/* ── Submit button ──────────────────────────────────────────────────────── */
.pp-contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 32px;
    background: var(--orange);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
    margin-top: 4px;
}

.pp-contact-form__submit:hover {
    background: var(--blue);
}


/* CF7 overrides inside the card */
.pp-contact-form__cf7 .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pp-contact-form__cf7 input,
.pp-contact-form__cf7 textarea,
.pp-contact-form__cf7 select {
    width: 100%;
    border: 1.5px solid #e4dbd0;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.88rem;
    font-family: inherit;
    color: var(--dark, #1a1a1a);
    background: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.pp-contact-form__cf7 input:focus,
.pp-contact-form__cf7 textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px rgba(232, 132, 92, 0.12);
    background: #fff;
}
.pp-submit-wrap{position: relative;}
.pp-submit-wrap .wpcf7-spinner{position:absolute;right:20px;top:50%;transform:translateY(-50%);}
.pp-contact-form__cf7 input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
    width: 100%;
    margin-top:30px;
}

.pp-contact-form__cf7 input[type="submit"]:hover {
    background: var(--blue);
}

/* Success / error messages */
.pp-contact-us .wpcf7-response-output {
    border-radius: 8px;
    font-size: 0.85rem;
    padding: 12px 16px;
    margin-top: 12px;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .pp-contact-us__inner {
        grid-template-columns: 1fr 1fr;
    }

    .pp-contact-us__divider {
        display: none;
    }
}

@media (max-width: 767px) {
    .pp-contact-us {
        padding: 50px 0;
    }

    .pp-contact-us__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pp-contact-form__card {
        padding: 28px 20px;
    }

    .pp-contact-form__row {
        grid-template-columns: 1fr;
    }

    .pp-contact-us__deco {
        width: clamp(80px, 20vw, 120px);
    }
}
