/* ======================= */
/* Contact Hero Section */
/* ======================= */
.contact-bg {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/images/contact-bg.jpg') center/cover no-repeat;
}

.contact-bg img {
    display: none; /* Hide the img tag as we use background-image */
}

.contact-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better contrast */
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-bg h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* ======================= */
/* Contact Form Section */
/* ======================= */
.contact-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-form h2 {
    font-weight: bold;
    color: #333;
}

.contact-form p {
    color: #777;
}

.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 8px rgba(0, 123, 255, 0.3);
}

.contact-form button {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    padding: 12px;
    font-size: 18px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #0056b3, #003f7f);
    transform: scale(1.03);
}

/* ======================= */
/* Contact Info Section */
/* ======================= */
.contact-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #555;
}

.contact-info i {
    color: #007bff;
    margin-right: 12px;
    font-size: 18px;


.btn-whatsapp {
      background-color: #25d366;
      color: white;
      border: none;
    }
    .btn-whatsapp:hover {
      background-color: #1ebe5d;
    }
    .map-container iframe {
      width: 100%;
      height: 300px;
      border-radius: 10px;
      border: 0;
    }}

/* ======================= */
/* Google Map */
/* ======================= */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ======================= */
/* Responsive Design */
/* ======================= */
@media (max-width: 768px) {
    .contact-bg {
        height: 250px;
    }

    .contact-bg h1 {
        font-size: 2.2rem;
    }

    .contact-form,
    .contact-info {
        padding: 20px;
    }

    .contact-form button {
        font-size: 16px;
        padding: 10px;
    }

    .contact-info p {
        font-size: 14px;
    }
}
