/* ====== CONTACT US PAGE STYLES ====== */

        /* Override header's cream body background */
        body {
            background: #fff !important;
        }

        .pk-contact-overline {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--pk-red);
            margin-bottom: 10px;
        }

        /* ---- Hero: Full-width banner ---- */
        .pk-contact-hero {
            background: var(--pk-cream);
        }

        .pk-contact-hero-grid {
            position: relative;
            min-height: 520px;
            overflow: hidden;
        }

        .pk-contact-hero-img {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #f0e6d3, #d4c4a8);
        }

        .pk-contact-hero-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .pk-contact-hero-text {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 520px;
            max-width: 680px;
            padding: 72px 64px;
            background: linear-gradient(90deg, rgba(255, 248, 232, .94) 0%, rgba(255, 248, 232, .86) 58%, rgba(255, 248, 232, 0) 100%);
        }

        .pk-contact-hero-text h1 {
            font-family: var(--pk-display);
            font-size: 42px;
            line-height: 1.15;
            margin-bottom: 18px;
            color: var(--pk-dark);
        }

        .pk-contact-hero-text h1 span {
            color: var(--pk-red);
        }

        .pk-contact-hero-text p {
            font-size: 16px;
            color: var(--pk-gray);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .pk-contact-hero-ctas {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .pk-contact-btn {
            padding: 12px 26px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            font-family: var(--pk-body);
            text-decoration: none;
            transition: all .2s;
        }

        .pk-contact-btn-red {
            background: var(--pk-red);
            color: #fff;
        }

        .pk-contact-btn-red:hover {
            background: var(--pk-red-dark);
        }

        .pk-contact-btn-outline {
            border: 2px solid var(--pk-dark);
            color: var(--pk-dark);
        }

        .pk-contact-btn-outline:hover {
            background: var(--pk-dark);
            color: #fff;
        }

        /* ---- Contact Cards ---- */
        .pk-contact-cards {
            padding: 64px 0;
        }

        .pk-contact-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .pk-contact-card {
            background: #fff;
            border-radius: 12px;
            padding: 28px;
            text-align: center;
            text-decoration: none;
            color: inherit;
            box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
            transition: transform .2s, box-shadow .2s;
            display: block;
        }

        .pk-contact-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
        }

        .pk-contact-card-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 16px;
            background: rgba(180, 2, 40, .08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pk-contact-card-icon svg {
            width: 22px;
            height: 22px;
        }

        .pk-contact-card h3 {
            font-family: var(--pk-display);
            font-size: 17px;
            margin-bottom: 6px;
            color: var(--pk-dark);
        }

        .pk-contact-card p {
            font-size: 13px;
            color: var(--pk-gray);
            line-height: 1.5;
            margin: 0;
        }

        /* ---- Map + Form Grid ---- */
        .pk-contact-map-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            background: #fff;
        }

        .pk-contact-map {
            min-height: 500px;
        }

        .pk-contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        .pk-contact-form-wrap {
            padding: 48px 40px;
        }

        .pk-contact-form-wrap h2 {
            font-family: var(--pk-display);
            font-size: 28px;
            margin-bottom: 24px;
            color: var(--pk-dark);
        }

        .pk-contact-fg {
            margin-bottom: 16px;
        }

        .pk-contact-fg label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
            color: var(--pk-dark);
        }

        .pk-contact-fg input,
        .pk-contact-fg select,
        .pk-contact-fg textarea {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #e8e8e8;
            border-radius: 8px;
            font-family: var(--pk-body);
            font-size: 14px;
            outline: none;
            background: #fff;
            transition: border-color .2s;
            box-sizing: border-box;
        }

        .pk-contact-fg input:focus,
        .pk-contact-fg select:focus,
        .pk-contact-fg textarea:focus {
            border-color: var(--pk-red);
        }

        .pk-contact-fg textarea {
            resize: vertical;
            min-height: 100px;
        }

        .pk-contact-fg-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .pk-contact-submit {
            width: 100%;
            padding: 13px;
            background: var(--pk-red);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-family: var(--pk-body);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 4px;
            transition: background .2s;
        }

        .pk-contact-submit:hover {
            background: var(--pk-red-dark);
        }

        .pk-contact-submit:disabled {
            opacity: .7;
            cursor: not-allowed;
        }

        /* ---- Success / Error Messages ---- */
        .pk-contact-success {
            background: #e8f5e9;
            border-radius: 12px;
            padding: 40px;
            text-align: center;
        }

        .pk-contact-success svg {
            width: 48px;
            height: 48px;
            margin-bottom: 16px;
        }

        .pk-contact-success h3 {
            font-family: var(--pk-display);
            font-size: 22px;
            color: #2e7d32;
            margin-bottom: 8px;
        }

        .pk-contact-success p {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
        }

        .pk-contact-toast {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            background: #c62828;
            color: #fff;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            z-index: 9999;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
            opacity: 0;
            transition: opacity .3s;
        }

        .pk-contact-toast.pk-show {
            opacity: 1;
        }

        /* ---- Responsive ---- */
        @media (max-width: 768px) {
            .pk-contact-hero-grid {
                min-height: 430px;
            }

            .pk-contact-hero-text {
                min-height: 430px;
                max-width: none;
                padding: 48px 24px;
                padding-right: 96px;
                background: linear-gradient(90deg, rgba(255, 248, 232, .98) 0%, rgba(255, 248, 232, .94) 52%, rgba(255, 248, 232, .62) 78%, rgba(255, 248, 232, .32) 100%);
            }

            .pk-contact-hero-img img {
                object-position: 67% center;
            }

            .pk-contact-hero-text h1 {
                max-width: 360px;
                font-size: 28px;
            }

            .pk-contact-hero-text p {
                max-width: 340px;
            }

            .pk-contact-cards-grid {
                grid-template-columns: 1fr 1fr;
            }

            .pk-contact-map-form {
                grid-template-columns: 1fr;
            }

            .pk-contact-map {
                min-height: 300px;
            }

            .pk-contact-form-wrap {
                padding: 32px 20px;
            }

            .pk-contact-fg-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .pk-contact-hero-grid {
                min-height: 420px;
            }

            .pk-contact-hero-text {
                min-height: 420px;
                padding: 44px 20px;
                padding-right: 78px;
                background: linear-gradient(90deg, rgba(255, 248, 232, .99) 0%, rgba(255, 248, 232, .96) 58%, rgba(255, 248, 232, .72) 84%, rgba(255, 248, 232, .45) 100%);
            }

            .pk-contact-hero-img img {
                object-position: 72% center;
            }

            .pk-contact-hero-text h1 {
                font-size: 24px;
            }

            .pk-contact-hero-text p {
                font-size: 14px;
                line-height: 1.6;
            }

            .pk-contact-cards-grid {
                grid-template-columns: 1fr;
            }
        }
