/* Path: reqrd.com/assets/css/contact.css */

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fefefe;
  color: #333;
  line-height: 1.6;
}

/* NAVIGATION */
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 16px 32px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  font-size: 1.4rem;
  color: #2c3e50;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links li a:hover {
  color: #0077cc;
}

.auth-links {
  display: flex;
  gap: 12px;
}

.secondary-link {
  color: #555;
  text-decoration: none;
  padding: 8px 12px;
  font-weight: 500;
}

.secondary-link:hover {
  text-decoration: underline;
}

.cta-button {
  background: #3498db;
  color: white;
  padding: 10px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: #2980b9;
}

/* INTRO SECTION */
.intro {
  text-align: center;
  padding: 60px 20px;
  background: #f0f8ff;
}

.intro h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.intro p {
  font-size: 1.2rem;
  color: #444;
}

/* CONTACT FORM */
.contact-form {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3498db;
  outline: none;
}

.contact-form button {
  margin-top: 24px;
  font-size: 1.1rem;
}

/* MAP + SOCIAL SECTION */
.map-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  gap: 40px;
}

.map-container {
  flex: 1 1 400px;
  min-width: 300px;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.social-links {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-links h2 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.social-links a {
  text-decoration: none;
  color: #3498db;
  margin-bottom: 10px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #1d6fa5;
}

/* FOOTER */
footer {
  background: #f5f5f5;
  padding: 30px 20px;
  text-align: center;
  font-size: 0.95rem;
  color: #666;
}

footer nav a {
  color: #555;
  text-decoration: none;
  margin: 0 10px;
}

footer nav a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .auth-links {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .auth-links a {
    width: 100%;
    text-align: center;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .map-social {
    flex-direction: column;
    gap: 20px;
  }
}
