/* =============================================
   HJ Theme — Contact Page Styles (Cream Castle)
   ============================================= */

.hj-contact-page {
    overflow-x: hidden;
    background: #fff;
}

/* ── Shared container ── */
.hj-contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* ── HERO ── */
.hj-contact-hero {
    position: relative;
    background: linear-gradient(135deg, #fce4ec 0%, #fff0f5 55%, #fdf4f7 100%);
    padding: 70px 4rem 90px;
    text-align: center;
    overflow: hidden;
}
.hj-contact-hero::before {
    content: '🍰';
    position: absolute;
    top: -8px;
    left: 6%;
    font-size: 68px;
    opacity: 0.12;
    transform: rotate(-12deg);
}
.hj-contact-hero::after {
    content: '🎁';
    position: absolute;
    bottom: 30px;
    right: 7%;
    font-size: 68px;
    opacity: 0.12;
    transform: rotate(14deg);
}
.hj-contact-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.hj-contact-tagline {
    font-size: 15px;
    color: #e8547a;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}
.hj-contact-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: #2d1b2e;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hj-contact-title span {
    color: #e8547a;
}
.hj-contact-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto;
}
.hj-contact-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 50px;
    z-index: 3;
}
.hj-contact-hero-wave svg {
    width: 100%;
    height: 100%;
}

/* ── QUICK INFO CARDS ── */
.hj-contact-info-section {
    padding: 50px 0 10px;
}
.hj-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* Address card spans full width */
.hj-contact-info-card--full {
    grid-column: 1 / -1;
}

.hj-contact-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: #fff8fa;
    border: 1px solid #fce4ec;
    border-radius: 16px;
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.hj-contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(232, 84, 122, 0.12);
}
.hj-contact-info-card--static:hover {
    transform: none;
    box-shadow: none;
}
.hj-contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #fce4ec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.hj-contact-info-icon--fb {
    background: #e8f0fe;
    border-color: #c3d3f8;
}
.hj-contact-info-label {
    font-size: 12px;
    color: #999;
    font-weight: 600;
    margin-bottom: 3px;
}
.hj-contact-info-value {
    font-size: 14px;
    font-weight: 800;
    color: #2d1b2e;
}

/* ── MAIN SECTION ── */
.hj-contact-main-section {
    padding: 50px 0 70px;
}
.hj-contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    align-items: start;
}

/* ── FORM CARD ── */
.hj-contact-form-card {
    background: #fff;
    border: 1px solid #fce4ec;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.hj-contact-form-title {
    font-size: 22px;
    font-weight: 900;
    color: #2d1b2e;
    margin-bottom: 6px;
}
.hj-contact-form-sub {
    font-size: 13px;
    color: #999;
    margin-bottom: 22px;
}

.hj-contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hj-form-group {
    margin-bottom: 18px;
}
.hj-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #2d1b2e;
    margin-bottom: 6px;
}
.hj-form-group input,
.hj-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #f0d6e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: #2d1b2e;
    background: #fff;
    outline: none;
    transition: border-color 0.15s;
    box-sizing: border-box;
    resize: vertical;
}
.hj-form-group input:focus,
.hj-form-group textarea:focus {
    border-color: #e8547a;
}
.hj-form-group input::placeholder,
.hj-form-group textarea::placeholder {
    color: #c9b6bd;
}

.hj-contact-error {
    background: #fff0f0;
    border: 1px solid #ffd6d6;
    color: #c0392b;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
}
.hj-contact-success {
    background: #f0fff5;
    border: 1px solid #c9f0d6;
    color: #198754;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.hj-contact-submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: #e8547a;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 6px 20px rgba(232, 84, 122, 0.32);
    transition:
        background 0.18s,
        transform 0.15s;
}
.hj-contact-submit-btn:hover {
    background: #c73d62;
    transform: translateY(-2px);
}
.hj-contact-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

/* ── SIDE COLUMN ── */
.hj-contact-side-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hj-contact-hours-card {
    background: #fff8fa;
    border: 1px solid #fce4ec;
    border-radius: 20px;
    padding: 26px 28px;
}
.hj-contact-hours-card h3 {
    font-size: 16px;
    font-weight: 900;
    color: #2d1b2e;
    margin-bottom: 16px;
}
.hj-contact-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #f5e6ec;
}
.hj-contact-hours-row:last-of-type {
    border-bottom: none;
}
.hj-contact-hours-row span:first-child {
    font-weight: 700;
    color: #2d1b2e;
}
.hj-contact-hours-note {
    margin-top: 14px;
    font-size: 12px;
    color: #999;
    line-height: 1.7;
}

.hj-contact-map-card {
    border: 1px solid #fce4ec;
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
}
.hj-contact-map-card iframe {
    display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hj-contact-container {
        padding: 0 2.5rem;
    }
    .hj-contact-hero {
        padding: 60px 2.5rem 80px;
    }
    .hj-contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hj-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hj-contact-container {
        padding: 0 1.75rem;
    }
    .hj-contact-hero {
        padding: 50px 1.75rem 70px;
    }
    .hj-contact-hero::before,
    .hj-contact-hero::after {
        font-size: 46px;
    }
    .hj-contact-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hj-contact-container {
        padding: 0 1rem;
    }
    .hj-contact-hero {
        padding: 40px 1rem 60px;
    }
    .hj-contact-info-grid {
        grid-template-columns: 1fr;
    }
    .hj-contact-form-card {
        padding: 22px;
    }
    .hj-contact-info-section {
        padding: 36px 0 6px;
    }
    .hj-contact-main-section {
        padding: 36px 0 50px;
    }
}
