/* =========================================
   1. SETUP & UTILITIES (Contact Page)
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Prompt', sans-serif;
}

/* แอนิเมชันตอนเลื่อนหน้าจอ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }

/* Input Focus Effects */
input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 0 4px rgba(224, 170, 62, 0.1);
}

/* ปรับสี Placeholder ให้ดูละมุนขึ้น */
::placeholder {
    color: #9ca3af;
    opacity: 1;
}

/* แก้ไขสี Autofill ของ Browser (ให้พื้นหลังยังขาว ไม่เหลือง) */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #1f2937 !important;
}

/* SweetAlert2 Customization (ทำให้ Pop-up สีเข้ากับเว็บ) */
.swal2-popup {
    border-radius: 1.5rem !important;
    font-family: 'Prompt', sans-serif !important;
}
.swal2-confirm {
    background: linear-gradient(to right, #8B0000, #5a0000) !important;
    border-radius: 0.75rem !important;
    font-weight: 600 !important;
    padding: 12px 30px !important;
}