/* ═══════════════════════════════════════════
   Contact Page CSS — Modern Blue Design
   Greta Group — Professional Layout
═══════════════════════════════════════════ */

:root {
  --brand-blue: #00457d;
  --brand-blue-dark: #00345f;
  --brand-blue-gradient: linear-gradient(135deg, #0d3b66, #145da0);

  --bg-page: #faf7f2;
  /* Creamy background as requested */
  --bg-card-white: #ffffff;

  --text-white: #ffffff;
  --text-dark: #222222;
  --text-muted: #666666;

  --shadow-light: 0 5px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ── Main Section Wrapper ── */
.contact-page-wrapper {
  background-color: var(--bg-page);
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  /* Clean modern font */
}

.contacts-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Contact Info Cards ── */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.modern-contact-card {
  background: var(--brand-blue-gradient);
  color: var(--text-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modern-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.modern-contact-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.modern-contact-card p,
.modern-contact-card a {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  margin: 0;
}

.modern-contact-card a:hover {
  color: var(--text-white);
  text-decoration: underline;
}

/* ── Form & Map Split Section ── */
.contact-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ── Clean White Form ── */
.modern-form-box {
  background: var(--bg-card-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
}

.modern-form-box h2 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 25px;
  font-weight: 600;
}

.modern-input-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.modern-form-group {
  margin-bottom: 20px;
  flex: 1;
}

.modern-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.modern-input:focus {
  border-color: var(--brand-blue);
}

.modern-textarea {
  min-height: 130px;
  resize: vertical;
}

.modern-submit-btn {
  background: var(--brand-blue);
  color: var(--text-white);
  padding: 14px 35px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  width: auto;
}

.modern-submit-btn:hover {
  background: var(--brand-blue-dark);
}

/* ── Map Styling ── */
.modern-map-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  background: #eee;
  min-height: 450px;
}

.modern-map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: none;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .contact-split-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .modern-input-row {
    flex-direction: column;
    gap: 20px;
  }

  .modern-form-box {
    padding: 30px 20px;
  }

  .contact-page-wrapper {
    padding: 50px 0;
  }
}