/* ============================================================
   Voice of Wishes — contact.css
   ============================================================ */

/* Form grid */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.form-group label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.83rem;
    color: #1a1a1a;
    letter-spacing: 0.03em;
}

/* Radio group */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.5rem 0;
}
.radio-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.87rem;
    color: #54595F;
    cursor: pointer;
    font-weight: 400;
}
input[type="radio"]  { accent-color: #C2934A; cursor: pointer; }
input[type="checkbox"] { accent-color: #C2934A; width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }

/* Checkbox row */
.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.83rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--vow-gold);
    color: white;
    border: none;
    border-radius: 9999px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 8px 20px rgba(194,147,74,0.30);
}
.btn-submit:hover { background: #b07d35; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(194,147,74,0.38); }
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* Form note */
.form-note {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    color: #aaa;
    margin-top: 1rem;
    line-height: 1.6;
}

/* Contact info card */
.contact-card {
    background: white;
    border: 1px solid #EBEBEB;
    border-radius: 24px;
    padding: 2.5rem;
    position: sticky;
    top: 120px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #F5F5F5;
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(194,147,74,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vow-gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Hours table */
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.55rem 0;
    border-bottom: 1px solid #F5F5F5;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.83rem;
    color: #777;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: #444; font-weight: 600; }

/* Pulsing dot */
@keyframes dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}
.pulse-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

/* Success message */
.success-msg {
    text-align: center;
    padding: 3rem 2rem;
    display: none;
}
.success-msg.visible { display: block; }
.success-msg .icon { font-size: 3.5rem; margin-bottom: 1rem; }

/* Reassurance card */
.reassure-card {
    background: white;
    border: 1px solid #EBEBEB;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.35s ease;
}
.reassure-card:hover {
    border-color: rgba(194,147,74,0.30);
    box-shadow: 0 16px 40px rgba(194,147,74,0.08);
    transform: translateY(-4px);
}
.reassure-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(194,147,74,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vow-gold);
    font-size: 1.2rem;
    margin: 0 auto 1.25rem;
}
