.contact-card {
        background: #fff;
        padding: 40px 30px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
        height: 100%;
        border: 1px solid rgba(0,0,0,0.02);
    }
    
    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(162, 73, 237, 0.15);
    }

    .contact-card .icon-wrap {
        width: 70px;
        height: 70px;
        background: rgba(162, 73, 237, 0.1);
        color: #A249ED;
        font-size: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .contact-card h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #1a1a1a;
    }

    .contact-card .text {
        color: #666;
        font-size: 15px;
        line-height: 1.6;
    }

    .contact-card .text a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        display: block;
    }

    .contact-card .text a:hover {
        color: #A249ED;
    }

    .contact-card .text .sub {
        display: block;
        font-size: 13px;
        color: #999;
        margin-top: 5px;
    }

    /* Form Styles */
    .sub-title {
        color: #A249ED;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .main-title {
        font-size: 28px;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 20px;
    }

    .form-control {
        background-color: #f9f9f9;
        border: 1px solid #eee;
        border-radius: 10px;
    }
    
    .form-control:focus {
        background-color: #fff;
        border-color: #A249ED;
        box-shadow: 0 0 0 4px rgba(162, 73, 237, 0.1);
    }

    .form-floating > label {
        color: #888;
    }
    .form-floating > label small.text-danger {
        display: block;
        font-size: 11px;
        margin-top: 2px;
        font-weight: 600;
    }
