/* ============================= */
/* CONTACT PAGE                  */
/* ============================= */

/* ADDED: Octodanor premium tokens (safe fallbacks) */
:root{
  --brand: #1F5E5B;          /* Octodanor teal */
  --brand-2:#184C49;         /* darker teal */
  --ink:#0b2322;
  --surface:#F7F9F9;
  --border:#DDE5E5;
  --shadow-soft:0 10px 30px rgba(6,20,40,0.10);
  --shadow:0 18px 46px rgba(0,0,0,0.18);
  --focus:rgba(31,94,91,0.35);
}

/* ADDED: stronger focus for accessibility */
:focus-visible{
  outline:3px solid var(--focus);
  outline-offset:3px;
}

.contact-hero {
  position: relative;

  /* CHANGED: brand-aligned overlay, calmer */
  background:
    linear-gradient(135deg, rgba(15,47,46,0.88), rgba(11,35,34,0.88)),
    url('../img/contact-hero.jpg') center/cover no-repeat;

  color: var(--white);
  padding: 6rem 2rem;
  text-align: center;

  /* ADDED */
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;

  /* CHANGED: no orange headline — keep enterprise white */
  color: var(--white);

  margin-bottom: 1rem;

  /* ADDED */
  letter-spacing: 0.02em;
}

.contact-hero p {
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* ADDED: subtle hero highlight */
.contact-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 50% 20%, rgba(31,94,91,0.22), transparent 65%);
  pointer-events:none;
}

/* ============================= */
/* CONTACT SECTION               */
/* ============================= */
.contact-section {
  padding: 6rem 2rem;

  /* CHANGED */
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

/* ADDED: premium card wrappers without changing markup */
.contact-info,
.contact-form{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

/* Contact Info */
.contact-info{
  /* ADDED */
  padding: 2.2rem 2.1rem;
}

.contact-info h2 {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
  color: var(--ink);

  /* ADDED */
  letter-spacing: 0.01em;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gray);
  line-height: 1.75;
}

.contact-info ul {
  list-style: none;
  margin: 1.2rem 0;
  padding: 0;

  /* ADDED */
  display: grid;
  gap: .75rem;
}

.contact-info li {
  font-size: 1rem;
  margin: 0.6rem 0;
  color: var(--ink);

  /* ADDED */
  padding: .85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #fbfcfc);
}

.contact-info a {
  /* CHANGED */
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social-links {
  margin-top: 1.5rem;
}

/* NOTE: your HTML has empty <a> tags for socials.
   This makes them invisible. We style them as icon-less "pills" so they show. */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* CHANGED: pill buttons */
  width: 44px;
  height: 44px;
  border-radius: 12px;

  font-size: 1.1rem;
  margin-right: 0.6rem;

  color: var(--ink);
  border: 1px solid var(--border);
  background: #fff;

  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

/* ADDED: simple “icon” dot so empty anchors are visible */
.social-links a::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  display: inline-block;
}

.social-links a:hover {
  border-color: rgba(31,94,91,0.45);
  background: rgba(31,94,91,0.06);
  transform: translateY(-1px);
}

/* Contact Form */
.contact-form {
  /* CHANGED: keep your background but make it premium */
  background: var(--white);
  padding: 2.2rem 2.1rem;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.contact-form h2 {
  font-size: 1.8rem;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.contact-form form {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;

  /* ADDED */
  background: #fff;
  box-shadow: 0 0 0 rgba(0,0,0,0);

  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  /* CHANGED: teal focus */
  border-color: rgba(31,94,91,0.55);
  outline: none;
  box-shadow: 0 0 0 4px rgba(31,94,91,0.18);
  transform: translateY(-1px);
}

.contact-form button {
  /* CHANGED: brand teal primary */
  background: var(--brand);
  color: var(--white);
  border: 1px solid var(--brand);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.01em;

  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.contact-form button:hover {
  background: var(--brand-2);
  border-color: var(--brand-2);
  transform: translateY(-1px);
}

.form-response {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 600;

  /* CHANGED */
  color: var(--brand);
}

/* ============================= */
/* MAP SECTION                   */
/* ============================= */
.map-section {
  background: var(--surface);
  padding: 6rem 2rem;
  text-align: center;

  /* ADDED */
  border-top: 1px solid var(--border);
}

.map-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 2rem;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;

  /* CHANGED */
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

/* ============================= */
/* RESPONSIVE                    */
/* ============================= */
@media (max-width: 768px) {
  .contact-hero h1 { font-size: 2.2rem; }
  .contact-hero p { font-size: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-container iframe { height: 300px; }

  /* ADDED */
  .contact-info, .contact-form{ padding: 1.6rem 1.3rem; }
}
