/* ── RESET & GLOBAL ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: 'Arial', sans-serif;
  background: #fff;
  color: #000;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 1100px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.logo img {
  height: 54px;
  width: 120px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 20px;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.45;
}

.nav-cta {
  background: #000;
  color: #fff;
  padding: 11px 28px;
  font-size: 20px;
  text-decoration: none;
}

/* ── CONTACT SECTION ── */
.contact-container {
  flex: 1; /* Pushes footer down */
  display: flex;
  max-width: 1100px;
  margin: 120px auto 60px; /* Space for fixed nav */
  padding: 0 24px;
  gap: 60px;
  align-items: center;
}

.contact-info {
  flex: 1;
}

.sub-heading {
  color: #666;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 700;
}

.contact-info h1 {
  font-size: 48px;
  margin: 20px 0;
  line-height: 1.1;
  font-weight: 800;
}

.contact-info p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 30px;
}

.office-details p {
  margin-bottom: 8px;
  font-size: 16px;
}

/* Form Card */
.contact-form-card {
  flex: 1;
  background-color: #1c1e22;
  padding: 40px;
  border-radius: 12px;
  color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-form-card h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  margin-bottom: 8px;
  color: #ccc;
}

.form-group input, 
.form-group textarea {
  padding: 12px;
  border: 1px solid #444;
  background: #2a2d32;
  color: white;
  border-radius: 4px;
  outline: none;
}

.full-width {
  margin-top: 15px;
}

.submit-btn {
  width: 100%;
  margin-top: 25px;
  padding: 14px;
  background-color: #5d93cc;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background-color: #4a7bb0;
}

/* ── FOOTER ── */
footer {
  background: #000;
  padding: 32px 48px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .contact-container {
    flex-direction: column;
    margin-top: 100px;
    text-align: center;
  }
  
  .nav-inner { width: 95%; }
  
  .contact-form-card { width: 100%; }
}

@media (max-width: 600px) {
    .form-row { flex-direction: column; }
    .contact-info h1 { font-size: 32px; }
}

/* ── MAP SECTION ── */
.map-section {
    width: 80%;
    margin: 60px auto;
    display: flex;
    justify-content: center;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 1000px; /* Optional: limits map width */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #444;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.static-map {
    width: 100%;
    display: block;
    /* Keeps the dark/moody look of your original design */
    filter: brightness(0.7) grayscale(0.2);
    transition: filter 0.3s ease;
}

.map-container:hover .static-map {
    filter: brightness(1) grayscale(0);
}

/* Floating label on the upper left */
.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 500;
    pointer-events: none; /* Allows clicks to go through to the link */
    border: 1px solid #555;
    transition: background 0.3s ease;
}

.map-link:hover .map-overlay {
    background: #ff0000; /* Turns red on hover to match the pin */
}