/* ============= Contact.css (Skin/Gold Theme) ============= */

:root{
  --card:#ffffff;
  --panel:#fffdf6;      /* ivory panel */
  --ink:#121826;
  --muted:#6b7280;
  --ring:#e5dbb5;       /* soft warm border */
  --shadow:0 4px 12px rgba(0,0,0,0.12);

  /* accents */
  --accent-bg:#fff8e1;     /* skin yellow */
  --accent-text:#6b4f0a;
  --accent-border:#d4af37; /* premium gold */
}

/* CONTACT WRAPPER */
.contact-container{
  max-width: 1000px;
  margin: 40px auto;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(180deg, #fff8e1, #faedc4);  /* skin yellow bg */
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 2px solid var(--accent-border);
}

/* TOP: LEFT + RIGHT */
.top-section{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
}

.left-side,
.right-side{
  flex:1 1 48%;
  background: var(--panel);
  padding:20px;
  border-radius:12px;
  box-sizing:border-box;
  border:1px solid var(--ring);
}

.left-side h2{
  font-size:1.8rem;
  margin:0 0 12px;
  color:var(--ink);
}
.left-side p{
  margin:0 0 20px;
  color:var(--muted);
}

/* Social buttons */
.social-buttons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:20px;
}
.social-btn{
  padding:8px 14px;
  border-radius:20px;
  color:#fff;
  text-decoration:none;
  font-size:0.9rem;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:transform .15s ease, opacity .15s ease;
}
.social-btn:hover{ transform: translateY(-1px); }
.facebook{ background:#3b5998; }
.twitter{ background:#1DA1F2; }
.instagram{ background:#d6249f; }
.youtube{ background:#FF0000; }

/* Map */
.map-container iframe{
  width:100%;
  height:250px;
  border:0;
  border-radius:12px;
  box-shadow:0 4px 10px rgba(0,0,0,.15);
}

/* FORM */
form{
  display:flex;
  flex-direction:column;
  gap:10px;
}
form label{
  font-weight:600;
  color:var(--ink);
}
form input,
form textarea{
  padding:12px 12px;
  border:1px solid var(--ring);
  border-radius:10px;
  background:#fff;
  color:var(--ink);
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}
form input::placeholder,
form textarea::placeholder{ color:#9aa3af; }

form input:focus,
form textarea:focus{
  border-color: var(--accent-border);
  box-shadow: 0 0 0 3px rgba(212,175,55,.25);
}

/* BUTTON */
form button{
  margin-top:8px;
  background: var(--accent-bg);
  color: var(--accent-text);
  border:1px solid var(--accent-border);
  padding:12px 20px;
  border-radius:30px;
  cursor:pointer;
  font-weight:700;
  letter-spacing:.3px;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
form button:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
form button:active{ transform: translateY(0); }
form button:disabled{ opacity:.6; cursor:not-allowed; }

/* SUCCESS MESSAGE */
#successMsg{
  display:none;
  margin-top:12px;
  padding:12px 14px;
  border-radius:12px;
  background:#fff8e1;
  color:#6b4f0a;
  font-weight:600;
  border:1px solid var(--accent-border);
}

/* BOTTOM CARDS */
.bottom-cards{
  display:flex;
  justify-content:center;
  align-items:stretch;
  gap:20px;
  margin-top:8px;
  flex-wrap:wrap;
  text-align:center;
}
.card{
  background:#fff;
  padding:22px;
  border-radius:14px;
  width:260px;
  box-shadow:0 3px 10px rgba(0,0,0,0.08);
  border:1px solid var(--ring);
}
.icon{ font-size:2rem; margin-bottom:10px; display:block; color:var(--accent-text); }
.card h4{ margin:6px 0 6px; color:var(--ink); }
.card p{ margin:0; color:#374151; }
.muted-link{ color:inherit; text-decoration:none; }
.muted-link:hover{ text-decoration:underline; }

/* Focus ring */
a:focus-visible,
button:focus-visible,
.social-btn:focus-visible{
  outline: 3px solid rgba(212,175,55,.35);
  outline-offset: 2px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 900px){
  .left-side,.right-side{ flex:1 1 100%; }
}
@media (max-width: 480px){
  .contact-container{ margin:24px 12px; padding:16px; }
  .card{ width:100%; }
}
