.contact-page{
    padding:4rem 0;
    overflow:hidden;
}

/* GLASS */
.glass-card{
    background: rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:25px;
    padding:1.8rem;
    backdrop-filter:blur(18px);
    transition:.4s;
}

.glass-card:hover{
    transform:translateY(-5px);
    border-color:#D4AF37;
}

/* IMAGE */
.image-box{
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-image{
    width:100%;
    max-height:650px;
    object-fit:cover;
    border-radius:20px;
    animation:float 6s ease-in-out infinite;
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}
}

/* TITLE */
.contact-title{
    font-size:1.8rem;
    margin-bottom:1.2rem;
    color:#fff;
}

/* INPUT */
.custom-input{
    width:100%;
    padding:12px 15px;
    margin-top:10px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,0.1);
    background:rgba(0,0,0,0.25);
    color:#fff;
    outline:none;
}

.custom-input:focus{
    border-color:#D4AF37;
    box-shadow:0 0 10px rgba(212,175,55,0.2);
}

/* BUTTON */
.contact-btn{
    padding:12px 25px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,#D4AF37,#f7d76c);
    font-weight:bold;
    cursor:pointer;
}

/* ITEMS */
.contact-items{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-item{
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.contact-item i{
    font-size:22px;
    color:#D4AF37;
}

/* SOCIAL */
.social-links{
    display:flex;
    gap:12px;
    margin-top:10px;
}

.social-links a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:rgba(255,255,255,0.05);
    color:#D4AF37;
    transition:.3s;
}

.social-links a:hover{
    background:#D4AF37;
    color:#000;
    transform:translateY(-3px);
}

/* ANIMATION */
.animate-in{
    opacity:0;
    transform:translateY(30px);
    animation:fadeUp .7s forwards;
}

.delay-1{animation-delay:.2s;}
.delay-2{animation-delay:.4s;}

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ===== CONTACT LINKS (DISTINCT STYLE) ===== */

.contact-item a{
    color: #D4AF37 !important;   /* آبی فیروزه‌ای روشن */
    text-decoration: none !important;
    font-weight: 500;
    transition: all .3s ease;
    position: relative;
}

/* افکت خط خیلی ظریف (نه underline کلاسیک) */
.contact-item a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: #D4AF37;
    transition: .3s;
}

.contact-item a:hover{
    color: #D4AF37 !important; /* طلایی در هاور */
    transform: translateX(-3px);
}

/* تغییر خط به طلایی در هاور */
.contact-item a:hover::after{
    width: 100%;
    background: #D4AF37;
}

/* tel & mail هم هماهنگ */
.contact-item a[href^="tel"],
.contact-item a[href^="mailto"]{
    color: #D4AF37 !important;
}

/* focus */
.contact-item a:focus{
    outline: none;
    color: #D4AF37 !important;
}