/* ========== GLOBAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0f766e; /* Teal */
  --accent: #0ea5a4; /* Light teal */
  --text: #111827; /* Dark text */
  --muted: #6b7280; /* Gray */
  --bg: #f9fafb; /* Light background */
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

/* ========== UTILITIES ========== */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

h1,
h2,
h3 {
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.9rem;
}

/* ========== HEADER ========== */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo span {
  color: var(--accent);
}

.primary-nav ul {
  display: flex;
  gap: 1.5rem;
}

.primary-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.primary-nav a.active,
.primary-nav a:hover {
  color: var(--primary);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  border: none;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: var(--accent);
}

/* ========== CONTACT PAGE LAYOUT ========== */
.contact-section {
  padding: 2rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-form-card,
.contact-info {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

/* ========== FORM STYLES ========== */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-group .required {
  color: #dc2626; /* red asterisk */
}

.contact-form-card input,
.contact-form-card textarea {
  display: block;
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14, 165, 164, 0.2);
}

.form-actions {
  margin-top: 1rem;
}

/* ========== CONTACT INFO ========== */
.contact-info h3 {
  margin-bottom: 0.5rem;
}

.map-placeholder {
  background: #e5e7eb;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--white);
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
