.contacts-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
  color: #ffffff;
  background: linear-gradient(to bottom right, #0077b6, #00b4d8, #90e0ef);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contacts-page h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 10px;
  color: #03045e;
}

.subtitle {
  text-align: center;
  font-size: 1rem;
  color: #caf0f8;
  margin-bottom: 40px;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-info {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  background: #023e8a;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-info h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #ade8f4;
}

.contact-info p {
  margin-bottom: 12px;
  color: #caf0f8;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #03045e;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #0077b6;
  border-radius: 8px;
  font-size: 1rem;
  resize: vertical;
  background-color: #caf0f8;
  color: #03045e;
  transition: border-color 0.2s, background-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00b4d8;
  outline: none;
  background-color: #ffffff;
}

.contact-form button {
  padding: 14px;
  background-color: #0077b6;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.contact-form button:hover {
  background-color: #023e8a;
}

.nv-footer {
  background: #0C2340; /* Deep navy blue */
  color: #fff;
  padding: 40px 20px;
  font-size: 0.95rem;
  font-family: 'Segoe UI', sans-serif;
}

.nv-footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.nv-footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.nv-footer-col p {
  color: #e5e7eb;
  margin-bottom: 10px;
  line-height: 1.6;
}

.nv-footer-col small {
  display: block;
  color: #9ca3af;
}

.nv-footer-col h4 {
  color: #00c4cc;
  font-weight: 600;
  margin-bottom: 12px;
}

.nv-footer-col ul {
  list-style: none;
  padding: 0;
}

.nv-footer-col ul li {
  margin-bottom: 8px;
}

.nv-footer-col ul li a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nv-footer-col ul li a:hover {
  color: #fff;
}

.nv-footer-form {
  display: flex;
  margin-top: 12px;
}

.nv-footer-form input {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
  border-radius: 3px 0 0 3px;
}

.nv-footer-form button {
  background: #0077c0; /* Green send button */
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.nv-footer-form button:hover {
  background: #00CCFF;
}
