.enquiry-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    max-width: 1200px;
	padding-bottom: 120px;
}

.enquiry-box {
    position: relative;
    flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 300px;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

@media (max-width: 1100px) {
  .enquiry-container {
    flex-wrap: wrap;
  }

  .enquiry-box {
    flex: 1 1 45%;   /* 一行两张 */
    max-width: 45%;
  }
}

.enquiry-box:hover {
    transform: scale(1.03);
}

.enquiry-box img {
    width: 100%;
    height: 250px;
	object-fit: cover;
    display: block;
}

.enquiry-caption {
    padding: 20px;
    background: #fff;
    text-align: center;
}

.enquiry-caption h3 {
    margin-bottom: 10px;
}

.enquiry-caption p {
    margin-bottom: 15px;
}

.enquiry-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00539C;
    color: #fff;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.enquiry-btn:hover {
    background: #003d75;
	cursor: pointer;
}

.hidden {
    display: none;
}

.consent-box {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding-bottom: 20px;
}

/* Main Container */
.contact-map-container {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    max-width: 90%;
    width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    margin-top: 48px;   /* 你可以试 24 / 32 / 48 */
}

.contact-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.08);
  color: #000;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  z-index: 10;
}

.contact-form-section {
	flex: 1;
	background: #ffffff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	max-width: 600px;
	width: 100%;
}

.contact-form-section h2 {
	text-align: center;
	margin-bottom: 10px;
}

.contact-form-section form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.wrap-input1 {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.input1 {
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 8px;
	background: #f9f9f9;
	transition: all 0.3s ease;
	outline: none;
}

.input1:focus {
	border-color: #3b82f6;
	box-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
}

textarea.input1 {
	height: 200px;
	resize: vertical;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 8px;
	background: #f9f9f9;
	transition: all 0.3s ease;
}

        select.input1 {
            cursor: pointer;
        }

        /* Submit Button */
        .contact1-form-btn {
            padding: 12px 20px;
            background-color: #2838ca;
            color: white;
            font-size: 1rem;
            font-weight: bold;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-align: center;
            transition: all 0.3s ease; 
            box-shadow: 0 4px 12px rgba(59, 87, 246, 0.2);
        }

        /* Hover Effect */
        .contact1-form-btn:hover {
            background-color: #abb8f0; 
            color: black; 
            transform: scale(1.05); 
           
        }

        /* Error message styling */
        .error-message {
            color: red;
            margin-top: -5px;
            display: none;
        }

        .input-error {
            border: 1px solid red;
            box-shadow: 0 0 5px red;
        }

        .success-message {
            color: green;
            margin-top: 15px;
            text-align: center;
        }
		
body.no-scroll {
  overflow: hidden;
}
