.contact-page{
    width:90%;
    max-width:1200px;
    margin:100px auto;
}

/* HERO */

.contact-hero{
    text-align:center;
    margin-bottom:60px;
}

.contact-hero h1{
    font-size:38px;
    font-weight:700;
    color:#333;
}

.contact-hero p{
    margin-top:10px;
    color:#666;
    font-size:16px;
}

/* CARDS */

.contact-cards{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

/* CARD */

.contact-card{
    width:320px;
    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    border:2px solid rgb(182,180,180);
    box-shadow:0 6px 20px rgba(0,0,0,0.1);
    transition:0.3s ease;
}

.contact-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* ICON */

.icon-box{
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,#f16ead 0%,#4e0b2a 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
}

.icon-box i{
    color:#fff;
    font-size:28px;
}

/* TEXT */

.contact-card h3{
    font-size:22px;
    margin-bottom:10px;
}

.contact-card p{
    color:#666;
    font-size:14px;
    margin-bottom:25px;
}

/* BUTTON */

.contact-btn{
    display:inline-block;
    background:#eb579e;
    color:#fff;
    padding:12px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.contact-btn:hover{
    background:#e43a84;
    box-shadow:0 4px 12px rgba(255,77,166,0.3);
}