:root {
            --accent: #512729;
            --dark: #232728;
            --light-bg: #FDF7F4;
            --text: #444;
        }
        /* ─── Breadcrumb Banner ─── */
        .tp-page-banner {
            position: relative;
            height: 380px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background-color: var(--dark);
        }
        .tp-page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(81,39,41,0.85) 0%, rgba(35,39,40,0.75) 100%);
            z-index: 2;
        }
        .tp-page-banner-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transform: scale(1.05);
            transition: transform 8s ease;
            z-index: 1;
        }
        .tp-page-banner:hover .tp-page-banner-bg { transform: scale(1.1); }
        .tp-page-banner-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: #fff;
        }
        .tp-page-banner-content h1 {
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 18px;
            color: #fff;
        }
        .tp-breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .tp-breadcrumb li { font-size: 14px; font-weight: 500; letter-spacing: 1px; color: rgba(255,255,255,0.65); text-transform: uppercase; }
        .tp-breadcrumb li a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color .3s; }
        .tp-breadcrumb li a:hover { color: #fff; }
        .tp-breadcrumb li.active { color: #f5c6c6; }
        .tp-breadcrumb-sep { color: rgba(255,255,255,0.4); font-size: 18px; }

/* ─── Contact Page Content ─── */

        .ht-info-strip { padding: 70px 0 20px; background: var(--light-bg); }
        .ht-info-card {
            background: #fff; border-radius: 16px; padding: 36px 28px;
            text-align: center; box-shadow: 0 4px 28px rgba(0,0,0,.06);
            border: 1px solid rgba(0,0,0,.05);
            transition: box-shadow .3s, transform .3s; height: 100%;
        }
        .ht-info-card:hover { box-shadow: 0 10px 40px rgba(81,39,41,.12); transform: translateY(-4px); }
        .ht-info-card .icon-wrap {
            width: 70px; height: 70px; border-radius: 50%; background: #fdece9;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 22px; font-size: 22px; color: var(--accent);
            transition: background .3s, color .3s;
        }
        .ht-info-card:hover .icon-wrap { background: var(--accent); color: #fff; }
        .ht-info-card h5 {
            font-family: 'Montserrat', sans-serif; font-size: 14px; letter-spacing: 2.5px;
            text-transform: uppercase; color: var(--accent); margin-bottom: 14px; font-weight: 700;
        }
        .ht-info-card p, .ht-info-card a {
            color: var(--text); font-size: 16px; line-height: 1.8;
            display: block; font-weight: 500; transition: color .2s;
        }
        .ht-info-card a:hover { color: var(--accent); }

        /* ── SECTION LABELS ── */
        .ht-section-label {
            font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 3px;
            text-transform: uppercase; color: var(--accent); font-weight: 700;
            margin-bottom: 8px; display: block;
        }
        .ht-section-title {
            font-family: 'Cinzel', serif; font-size: clamp(24px,3.2vw,36px);
            font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 10px;
        }

        /* ── CONTACT SECTION ── */
        .ht-contact-section { padding: 40px 0 80px; background: var(--light-bg); }

        /* MAP */
        .ht-map-wrap {
            border-radius: 16px; overflow: hidden;
            border: 1px solid rgba(0,0,0,.09);
            box-shadow: 0 4px 28px rgba(0,0,0,.06);
            height: 100%; min-height: 460px; position: relative;
        }
        .ht-map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 460px; }
        .ht-map-badge {
            position: absolute; top: 14px; left: 14px; z-index: 2;
            background: var(--accent); color: #fff; font-family: 'Montserrat', sans-serif;
            font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
            font-weight: 700; padding: 6px 16px; border-radius: 50px;
        }

        /* FORM */
        .ht-form-wrap {
            background: #fff; border-radius: 16px; padding: 44px 40px;
            box-shadow: 0 4px 28px rgba(0,0,0,.06); border: 1px solid rgba(0,0,0,.05);
        }
        .ht-form-head { margin-bottom: 30px; }
        .ht-form-head p { color: var(--text); font-size: 16px; margin-top: 8px; font-weight: 500; }
        .ht-field-group { margin-bottom: 20px; }
        .ht-field-group label {
            display: block; font-family: 'Montserrat', sans-serif; font-size: 10px;
            letter-spacing: 2px; text-transform: uppercase; color: #888;
            margin-bottom: 7px; font-weight: 700;
        }
        .ht-field-group input,
        .ht-field-group select,
        .ht-field-group textarea {
            width: 100%; background: #faf8f6; border: 1px solid #e8e0d8;
            border-radius: 8px; color: var(--dark); font-family: 'Montserrat', sans-serif;
            font-size: 14px; font-weight: 500; padding: 13px 16px; outline: none;
            transition: border-color .2s, background .2s; -webkit-appearance: none;
        }
        .ht-field-group input::placeholder,
        .ht-field-group textarea::placeholder { color: #c8bfb8; }
        .ht-field-group input:focus,
        .ht-field-group select:focus,
        .ht-field-group textarea:focus {
            border-color: var(--accent); background: #fff;
            box-shadow: 0 0 0 3px rgba(81,39,41,.06);
        }
        .ht-field-group textarea { resize: vertical; min-height: 120px; }

        /* BUTTONS */
        .ht-submit-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
        .ht-btn-wa {
            flex: 1; min-width: 160px; display: flex; align-items: center;
            justify-content: center; gap: 9px;
            background: linear-gradient(135deg,#25d366,#1da851);
            color: #fff; border: none; border-radius: 50px;
            font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 1.5px;
            text-transform: uppercase; font-weight: 700; padding: 14px 22px;
            cursor: pointer; transition: opacity .2s, transform .2s;
            box-shadow: 0 4px 18px rgba(37,211,102,.2);
        }
        .ht-btn-wa:hover { opacity: .88; transform: translateY(-2px); }
        .ht-btn-email {
            flex: 1; min-width: 160px; display: flex; align-items: center;
            justify-content: center; gap: 9px;
            background: linear-gradient(135deg, var(--accent), #7a3c3e);
            color: #fff; border: none; border-radius: 50px;
            font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 1.5px;
            text-transform: uppercase; font-weight: 700; padding: 14px 22px;
            cursor: pointer; transition: opacity .2s, transform .2s;
            box-shadow: 0 4px 18px rgba(81,39,41,.2);
        }
        .ht-btn-email:hover { opacity: .88; transform: translateY(-2px); }

        /* Toast */
        .ht-toast {
            display: none; align-items: center; gap: 10px;
            background: #e8f9ef; border: 1px solid #a8e0c0; border-radius: 8px;
            padding: 12px 18px; color: #1a7a40; font-size: 13px; margin-top: 14px;
            font-family: 'Montserrat', sans-serif; font-weight: 600;
        }
        .ht-toast.show { display: flex; }

        /* ── CTA STRIP ── */
        .ht-cta-strip {
            background: linear-gradient(135deg, #512729, #7a3c3e);
            padding: 60px 0;
            text-align: center;
        }
        .ht-cta-strip h3 {
            font-family: 'Cinzel', serif; font-size: clamp(22px,3vw,32px);
            color: #fff; margin-bottom: 10px;
        }
        .ht-cta-strip p { color: rgba(255,255,255,.45); font-size: 14px; margin-bottom: 28px; font-weight: 500; }
        .ht-cta-wa {
            display: inline-flex; align-items: center; gap: 10px;
            background: #25d366; color: #fff; border-radius: 50px;
            padding: 14px 32px; font-family: 'Montserrat', sans-serif; font-size: 12px;
            letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; transition: opacity .2s;
        }
        .ht-cta-wa:hover { opacity: .85; color: #fff; }

        /* ── BACK TO TOP ── */
        .back-to-top-wrapper { position: fixed; bottom: 30px; right: 30px; z-index: 999; }
        #back_to_top {
            width: 44px; height: 44px; border-radius: 50%; background: var(--accent);
            color: #fff; border: none; display: flex; align-items: center;
            justify-content: center; cursor: pointer;
            box-shadow: 0 4px 20px rgba(81,39,41,.35); transition: transform .2s;
        }
        #back_to_top:hover { transform: translateY(-3px); }

/* ─── Responsive — same header/topbar behaviour as pg-about.css ─── */
@media (max-width: 1199px) {
    .tp-header-menu { display: none !important; }
}

@media (max-width: 991px) {
    .ht-form-wrap { padding: 28px 20px; }
}

@media (max-width: 767px) {
    .tp-page-banner { height: 260px; }

    .ht-submit-row { flex-direction: column; }
    .ht-btn-wa,
    .ht-btn-email { width: 100%; }
}