/* ================= CONTACT PAGE ================= */

.contact-wrapper{
    max-width:900px;
    margin:auto;
}

.contact-header{
    text-align:center;
    margin-bottom:30px;
}

.contact-header h1{
    font-weight:700;
}

.contact-header p{
    color:#6b7280;
}

/* CARD */
.contact-card{
    background:#ffffff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

/* INPUTS */
.contact-card input,
.contact-card textarea{
    width:100%;
    padding:12px;
    border-radius:10px;
    border:1px solid #e5e7eb;
    margin-bottom:12px;
    transition:0.2s;
}

.contact-card input:focus,
.contact-card textarea:focus{
    border-color:#111827;
    box-shadow:0 0 0 2px rgba(0,0,0,0.05);
    outline:none;
}

/* BUTTON */
.contact-btn{
    width:100%;
    padding:12px;
    background:#111827;
    color:#fff;
    border:none;
    border-radius:10px;
    font-weight:600;
    transition:0.2s;
}

.contact-btn:hover{
    background:#000;
}

/* SUCCESS */
.success-msg{
    background:#ecfdf5;
    color:#065f46;
    padding:12px;
    border-radius:10px;
    margin-bottom:15px;
    text-align:center;
}

/* CONTACT INFO */
.contact-info{
    margin-top:30px;
    background:#f9fafb;
    padding:20px;
    border-radius:12px;
}
/* =========================
   VIDEO BACKGROUND (FIXED)
========================= */
.video-bg{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1; /* nasa likod na */
    overflow:hidden;
    pointer-events:none; /* di na haharang ng clicks */
}

.video-bg video{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0.3;
    filter:blur(2px) brightness(0.6);
    pointer-events:none;
}

/* DARK OVERLAY */
.video-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
    pointer-events:none; /* IMPORTANT FIX */
}

/* =========================
   CONTENT WRAPPER
========================= */
.contact-wrapper{
    position:relative;
    z-index:10; /* siguradong nasa ibabaw */
    padding:40px;
}

/* =========================
   HEADER
========================= */
.contact-header{
    color:#fff;
    margin-bottom:20px;
}

/* =========================
   GLASS CARD
========================= */
.contact-card{
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    border-radius:12px;
    padding:20px;
}

/* =========================
   INPUTS
========================= */
.contact-card input,
.contact-card textarea{
    width:100%;
    padding:10px;
    border:none;
    border-radius:6px;
    margin-bottom:12px;
    background:rgba(255,255,255,0.17);
    color:#fff;
    outline:none;
}

/* placeholder color */
.contact-card input::placeholder,
.contact-card textarea::placeholder{
    color:#ddd;
}

/* =========================
   BUTTON
========================= */
.contact-btn{
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    background:#6366f1;
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.contact-btn:hover{
    background:#4f46e5;
}

/* =========================
   SUCCESS MESSAGE
========================= */
.success-msg{
    background:#22c55e;
    color:#fff;
    padding:10px;
    border-radius:6px;
    margin-bottom:10px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:768px){
    .contact-wrapper{
        padding:20px;
    }
}