body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  /* Replace the URL below with your image path (relative or absolute) */
  background-image: url("images/A sleek, futuristic .png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #1f2937;
}


/*-----------------------------------------------------------------------------------------------*/
.contact-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.contact-container h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #111827;
}

.contact-container p {
  margin-bottom: 30px;
  color: #4b5563;
}

form {
  display: grid;
  gap: 20px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input:focus, textarea:focus, select:focus {
  border-color: #45B6F0;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button {
  background: #45B6F0;
  color: #fff;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #1e90d6;
}

.success-message, .error-message {
  display: none;
  padding: 12px;
  border-radius: 6px;
  margin-top: 20px;
  font-weight: 600;
}

.success-message {
  background: #d1fae5;
  color: #065f46;
}

.error-message {
  background: #fee2e2;
  color: #991b1b;
}

/* Phone row layout */
.phone-row {
  display: flex;
  gap: 16px;
}

.country-select, .phone-input {
  flex: 1;
}