/* ════════════════════════════════════════
   SHRI SANGEETHAS – CONTACT PAGE
   ════════════════════════════════════════ */

/* ── HERO ── */
.contact-hero { width: 100%; line-height: 0; }
.contact-hero img { width: 100%; height: auto; display: block; }

/* ── CONTACT SECTION ── */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1160px;
  margin: 0 auto 56px;
  align-items: start;
}

/* ── LEFT: INFO ── */
.contact-info {}

.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin: 10px 0 16px;
}

.contact-subtext {
  font-size: 14.5px;
  line-height: 1.85;
  color: #888;
  margin-bottom: 32px;
}

/* Info cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  padding: 18px 20px;
  border: 1px solid #ede8e1;
  transition: box-shadow 0.25s;
}
.contact-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.07); }

.contact-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.contact-card-icon--wa { background: #25D366; }

.contact-card-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 5px;
}

.contact-card-val {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.65;
}
.contact-card-val a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-card-val a:hover { color: var(--gold); }

.wa-link {
  font-weight: 600;
  color: #25D366 !important;
}
.wa-link:hover { color: #1ca350 !important; }

.contact-card-note {
  font-size: 12.5px;
  color: #aaa;
}

/* Social */
.contact-social-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 12px;
}

.contact-social-links {
  display: flex;
  gap: 12px;
}

.contact-social-links a {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.contact-social-links a:hover {
  background: var(--gold-dark, #a67520);
  transform: translateY(-2px);
}

/* ── RIGHT: FORM ── */
.contact-form-wrap {
  background: #fff;
  padding: 44px 40px;
  border: 1px solid #ede8e1;
}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cf-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.4px;
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: #faf7f3;
  border: 1px solid #ddd8d0;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.cf-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.cf-group input::placeholder,
.cf-group textarea::placeholder { color: #bbb; }

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.12);
  background: #fff;
}

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

.cf-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 36px;
  background: var(--gold);
  color: #fff;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.cf-submit:hover {
  background: var(--gold-dark, #a67520);
  transform: translateY(-1px);
}

.cf-success {
  display: none;
  font-size: 14px;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 12px 16px;
  border-left: 3px solid #43a047;
  margin-top: 4px;
}

/* ── MAP ── */
.contact-map {
  max-width: 1160px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #ede8e1;
}
.contact-map iframe { display: block; }

/* ── FAQ ── */
.contact-faq {
  background: var(--cream);
  padding-top: 24px;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #ded9d1;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--gold); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s;
}
.faq-item.open .faq-q { color: #C8762A; }

.faq-icon {
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 22px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 22px 18px;
}

.faq-a p {
  font-size: 14px;
  line-height: 1.8;
  color: #777;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-wrap { padding: 36px 28px; }
}

@media (max-width: 600px) {
  .cf-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .contact-faq { padding-left: 20px; padding-right: 20px; }
}
