/* CONTACT PAGE STYLING */

.contact-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #e91e63;
    outline: none;
    box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.1);
}

/* BUTTON */
.contact-form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #e91e63;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #c2185b;
}

/* CONTACT CARDS */
.card {
    padding: 25px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* SOCIAL LINKS */
.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin: 8px;
    padding: 10px 16px;
    border-radius: 20px;
    background: #f5f5f5;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e91e63;
    color: #fff;
}

/* GRID SUPPORT (if not already in main CSS) */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 20px;
}

/* CENTER TEXT */
.center {
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-form {
        padding: 10px;
    }

    .social-links a {
        display: block;
        margin: 10px auto;
    }
}