.form-container {
    /*max-width: 500px;*/
    margin: 0 auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    animation: fadeIn 0.8s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    margin-top: 10px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0,123,255,0.4);
    outline: none;
    transform: scale(1.02);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, #007bff, #00b7ff);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0,123,255,0.4);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.location-card {
    position: relative;
    max-width: 650px;
    margin: 40px auto;
    padding: 30px 10px 30px;
    background: #ffffff;
    border: 2px dashed #10a0a6;
    border-radius: 10px;
    text-align: center;
    animation: fadeUp 1s ease forwards;
}

/* Marker Icon */
.location-icon {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: #10a0a6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    animation: pulse 2s infinite;
}

/* Address Text */
.location-text {
    font-size: 16px;
    line-height: 1.7;
    color: #222;
    margin: 0;
}

/* Fade Up Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Effect */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(32, 201, 151, 0.6);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(32, 201, 151, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(32, 201, 151, 0);
    }
}