/* ============================================================
   service-page.css
   ============================================================ */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #1A1A2E;
}

.page-content {
    flex: 1;
    margin-top: 72px;
    display: flex;
    align-items: stretch;
    min-height: calc(100vh - 72px);
}

/* ── SPLIT LAYOUT WRAPPER ── */
/* Targets the WP block group directly inside page-content */
.page-content > * {
    display: grid;
    grid-template-columns: 380px 1fr;
    width: 100%;
    max-width: 100%;
    min-height: calc(100vh - 72px);
}

/* ── LEFT PANEL ── */
/* You'll wrap your left content in a div.service-left inside the page template */
.service-left {
    background: var(--dark);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Geometric decorative circles */
.service-left::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 48px solid rgba(233, 169, 59, 0.07);
    pointer-events: none;
}

.service-left::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 36px solid rgba(46, 125, 140, 0.1);
    pointer-events: none;
}

.service-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

/* .service-header{
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
} */

/* ── SERVICE HEADER (h3/h4 section labels in left panel) ── */
.service-header {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 24px 0 12px;
    opacity: 0.9;
}

/* First header inside service-steps needs less top margin */
.service-steps .service-header {
    margin-top: 0;
    margin-bottom: 14px;
}

/* ── PROCESS DETAILS BLOCK ── */
.process-details {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.process-details p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 14px;
}

.process-details p strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Dua / closing line */
.process-dua {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.35) !important;
    font-style: italic;
    margin-top: 20px !important;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.7 !important;
}

.service-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 36px;
}

/* Step list */
.service-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.service-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.service-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(233, 169, 59, 0.12);
    border: 1px solid rgba(233, 169, 59, 0.28);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.service-step-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Trust pills */
.service-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.service-trust-pill {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50px;
    padding: 5px 14px;
}

/* ── RIGHT PANEL (form area) ── */
.service-right {
    background: #FAF7F2;
    padding: 56px 64px;
    overflow-y: auto;
}

/* ── WPFORMS SECTION HEADERS ── */
/* Replaces the plain h5 with a card-style header block */
.wpforms-field-html h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
    color: var(--gold) !important;
    background: #fff;
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 10px 16px !important;
    margin: 28px 0 20px !important;
    border-bottom: none !important;
}

.wpforms-field-html h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: var(--dark) !important;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

.wpforms-field-html ol {
    padding-left: 18px;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.8;
    margin-top: 8px;
}

.wpforms-field-html hr {
    border: none;
    border-top: 1px solid #e0ddd8;
    margin: 20px 0 28px;
}

/* ── ALL INPUTS ── */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form input[type="number"],
.wpforms-form input[type="url"],
.wpforms-form input[type="password"],
.wpforms-form textarea,
.wpforms-form select,
.wpforms-datepicker,
.wpforms-timepicker {
    width: 100% !important;
    padding: 10px 14px !important;
    border: 1.5px solid #e0ddd8 !important;
    border-radius: 9px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.88rem !important;
    color: var(--text) !important;
    background: #ffffff !important;
    outline: none !important;
    transition: border-color .2s, box-shadow .2s !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
    -webkit-appearance: none;
    appearance: none;
}

.wpforms-form input:focus,
.wpforms-form textarea:focus,
.wpforms-form select:focus,
.wpforms-datepicker:focus,
.wpforms-timepicker:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(233, 169, 59, 0.12) !important;
}

.wpforms-form input::placeholder,
.wpforms-form textarea::placeholder {
    color: #bbb !important;
}

.wpforms-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23777788'%3E%3Cpath d='M12.53 16.28a.75.75 0 0 1-1.06 0l-7.5-7.5a.75.75 0 0 1 1.06-1.06L12 14.69l6.97-6.97a.75.75 0 1 1 1.06 1.06l-7.5 7.5Z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 18px !important;
    padding-right: 40px !important;
    cursor: pointer !important;
}

.wpforms-form textarea {
    resize: vertical !important;
    min-height: 88px !important;
}

/* ── LABELS ── */
.wpforms-field-label {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: var(--text) !important;
    margin-bottom: 6px !important;
    display: block;
    letter-spacing: .02em;
}

.wpforms-required-label {
    color: #e05c5c !important;
    margin-left: 2px;
}

.wpforms-field-description {
    font-size: 0.73rem !important;
    color: var(--muted) !important;
    margin-top: 4px !important;
    line-height: 1.5 !important;
}

/* ── FIELD SPACING ── */
.wpforms-field-container .wpforms-field {
    margin-bottom: 18px !important;
}

.wpforms-layout-column {
    padding: 0 8px !important;
}

/* ── PHONE FIELD ── */
.iti { width: 100% !important; }
.iti__tel-input { padding-left: 54px !important; }

/* ── PAYMENT DISPLAY ── */
.wpforms-single-item-price {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--dark) !important;
    padding: 10px 0 !important;
}

.wpforms-payment-total {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--gold) !important;
}

/* ── PRICE ROW CARD ── */
.wpforms-field-payment-single .wpforms-single-item-price-content {
    background: #fff;
    border: 1px solid #e0ddd8;
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── ERROR ALERT ── */
.wpforms-error-alert,
.wpforms-cc-warning {
    background: #fef2f2 !important;
    border: 1px solid #fca5a5 !important;
    border-radius: 9px !important;
    padding: 12px 16px !important;
    font-size: 0.83rem !important;
    color: #b91c1c !important;
    margin: 8px 0 16px !important;
}

/* ── SUBMIT BUTTON ── */
.wpforms-submit,
button[name="wpforms[submit]"] {
    padding: 12px 36px !important;
    background: var(--gold) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background .2s, transform .2s !important;
    letter-spacing: .02em;
}

.wpforms-submit:hover,
button[name="wpforms[submit]"]:hover {
    background: #d4922a !important;
    transform: translateY(-1px) !important;
}

.wpforms-submit-container {
    margin-top: 24px !important;
    padding-top: 20px !important;
    border-top: 1px solid #e0ddd8 !important;
}

/* ── VALIDATION ERRORS ── */
.wpforms-error {
    font-size: 0.75rem !important;
    color: #e05c5c !important;
    margin-top: 4px !important;
}

input.wpforms-error,
textarea.wpforms-error,
select.wpforms-error {
    border-color: #e05c5c !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
	
	nav {
        padding: 0 20px;
        height: 64px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }
	
    .page-content > * {
        grid-template-columns: 1fr;
    }

    .service-left {
        padding: 40px 24px;
        min-height: auto;
    }

    .service-left::before,
    .service-left::after {
        display: none;
    }

    .service-right {
        padding: 36px 24px;
    }
}