/* Redesigned Contact Page CSS */
body {

    background: #f9f9f9;
    margin: 0;
    padding: 0;
    color: #333;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px auto;
    padding: 30px;
    max-width: 1200px;
    background: linear-gradient(145deg, #ffffff, #f1f1f1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.address, .form {
    width: 100%;
    max-width: 48%;
    margin-bottom: 20px;
}

.address h2, .form h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #007BFF;
}

.address p, .info span {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: #f8f8f8;
    padding: 10px;
    border-radius: 8px;
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.05);
}

.info i {
    margin-right: 10px;
    font-size: 20px;
    color: #007BFF;
}

.form form {
    display: flex;
    flex-direction: column;
}

.form input, .form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: #f8f8f8;
    transition: all 0.3s ease;
}

.form input:focus, .form textarea:focus {
    border-color: #007BFF;
    background: #ffffff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

.form textarea {
    height: 150px;
    resize: none;
}

.form button {
    padding: 12px 20px;
    background: linear-gradient(45deg, #007BFF, #0056b3);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form button:hover {
    background: linear-gradient(45deg, #0056b3, #003f88);
    box-shadow: 0 8px 15px rgba(0, 123, 255, 0.3);
}

.map {
    margin: 40px auto;
    max-width: 1200px;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.spinner {
    display: none; /* Hidden by default */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000; /* Ensure it appears above other content */
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
        padding: 20px;
    }

    .address, .form {
        width: 100%;
        max-width: 100%;
    }

    .map {
        height: 300px;
    }
}
