/* =========================
   CONTACT SECTION
========================= */
.contact{
    background: #0B1F3B;
    color: #fff;
}

/* Sub Title */
.sub-title{
    color: #C5A253 !important;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ALL HEADINGS WHITE */
.contact h1,
.contact h5{
    color: #ffffff !important;
}

/* Paragraph */
.contact p{
    color: #ccc;
}

/* Glass Cards */
.contact-card,
.contact-info-box{
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

.contact-info-box:hover{
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Icons */
.contact i{
    color: #C5A253 !important;
}

/* Social Buttons */
.social-btn{
    border: 1px solid #C5A253;
    color: #C5A253;
    padding: 8px 18px;
    border-radius: 30px;
    text-transform: capitalize;
    transition: 0.3s;
}

.social-btn:hover{
    background: #C5A253;
    color: #0B1F3B;
}

/* Form */
.form-control{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 12px;
    height: 58px;
}

.form-control:focus{
    border-color: #C5A253;
    box-shadow: 0 0 10px rgba(197,162,83,0.5);
    background: rgba(255,255,255,0.08);
}

/* Label */
.form-floating label{
    color: #bbb;
}

/* 🔥 LABEL HIDE ON CLICK */
.form-floating input:focus + label,
.form-floating textarea:focus + label,
.form-floating input:not(:placeholder-shown) + label,
.form-floating textarea:not(:placeholder-shown) + label {
    opacity: 0;
    visibility: hidden;
}

/* Button */
.btn-gold{
    background: linear-gradient(135deg,#C5A253,#b3923f);
    color: #0B1F3B;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-gold:hover{
    background: #C5A253;
    color: #fff;
    transform: translateY(-2px);
}

/* PHONE INPUT FIX */
.iti{
    width: 100%;
}

.iti input{
    height: 58px !important;
    padding-left: 75px !important;
    border-radius: 12px;
}

/* DROPDOWN DARK */
.iti__country-list{
    background: #1e2f47 !important;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.iti__country:hover{
    background: #24364f !important;
}

.iti__highlight{
    background: #C5A253 !important;
    color: #000 !important;
}

/* Responsive */
@media(max-width:768px){
    .contact-card{
        padding: 20px;
    }
}