/* Contact Card Styles */
.contact-card {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border: 1px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #e5e7eb;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

/* Social Icons Styles */
.social-icon-link {
    text-decoration: none;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Form Styles */
.contact-form-card {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.contact-form-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.custom-input {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 15px;
    color: #2c3e50;
    transition: all 0.3s ease-in-out;
}

.custom-input:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background-color: #fff;
}

.custom-input::placeholder {
    color: #9ca3af;
    font-size: 14px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #2563EB;
    border-color: #2563EB;
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-check-label {
    font-size: 14px;
    color: #6c757d;
    cursor: pointer;
    margin-left: 4px;
}

#submitBtn {
    background-color: #2563EB;
    color: white;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.submit-btn:hover {
    background-color: #1d4ed8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Success Modal Styles */
.success-icon {
    width: 80px;
    height: 80px;
    background-color: #DCFCE7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    border: none;
    border-radius: 12px;
}


@media (max-width: 767.98px) {
    .contact-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 575.98px) {
    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icons {
        gap: 12px !important;
    }

    .contact-form-card {
        padding: 12px !important;
    }

    .custom-input {
        font-size: 14px;
        padding: 10px 14px;
    }

    .submit-btn {
        font-size: 14px;
        padding: 10px 24px;
    }
}