  /* ── Contact page layout ── */
  .contact-container { padding: 2rem 0 3rem; background: none; }

  /* ── Map ── */
  .map-section { padding: 0 0 3rem; }
  .map-section .map-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b0000;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .map-section .map-heading i { color: #cc4e00; }
  .map-wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  }
  .map-wrap iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 24px;
    align-items: stretch;
  }
  @media(max-width:767px){ .contact-grid { grid-template-columns: 1fr; } }

  /* ── Info panel ── */
  .contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
  }
  .contact-info-panel .contact-info-card:last-child {
    flex: 1;
  }

  .contact-info-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-top: 3px solid #cc4e00;
  }
  .contact-info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #8b0000;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff3e0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .contact-info-card h3 i { color: #cc4e00; }

  .contact-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
  }
  .contact-detail-row:last-child { margin-bottom: 0; }
  .contact-detail-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #cc4e00;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .contact-detail-row strong {
    display: block;
    color: #333;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
  }
  .contact-detail-row a,
  .contact-detail-row span {
    color: #555;
    text-decoration: none;
    line-height: 1.5;
  }
  .contact-detail-row a:hover { color: #cc4e00; }

  /* Timings */
  .timings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .timing-item {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.82rem;
  }
  .timing-item strong {
    display: block;
    color: #8b0000;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 3px;
  }

  /* Social */
  .contact-social-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
  }
  .contact-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    flex-shrink: 0;
  }
  .contact-social-btn i { font-size: 1.2rem; }
  .contact-social-btn:hover { opacity: 0.85; transform: translateY(-2px); }
  .contact-social-btn:hover { opacity: 0.85; transform: translateY(-1px); }
  .contact-social-btn.fb  { background: #3b5998; color: #fff; }
  .contact-social-btn.yt  { background: #ff0000; color: #fff; }
  .contact-social-btn.ig  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
  .contact-social-btn.tw  { background: #000; color: #fff; }

  /* ── Right column ── */
  .contact-right-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
  }
  .contact-form-card {
    flex: 1;
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-top: 3px solid #cc4e00;
  }
  .form-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #8b0000;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .form-section-title i { color: #cc4e00; }

  .contact-form-card .form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: #444;
    margin-bottom: 5px;
  }
  .contact-form-card .form-control {
    border: 1.5px solid #ddd;
    border-radius: 9px;
    font-size: 0.93rem;
    padding: 10px 13px;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .contact-form-card .form-control:focus {
    border-color: #cc4e00;
    box-shadow: 0 0 0 3px rgba(204,78,0,0.12);
    background: #fff;
    outline: none;
  }
  .contact-form-card textarea.form-control { min-height: 120px; resize: vertical; }
  .contact-form-card select.form-control { cursor: pointer; }

  .submit-with-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
  }
  .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8b0000, #cc4e00);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 11px 28px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(139,0,0,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
  }
  .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139,0,0,0.45);
  }
  .form-privacy-note {
    font-size: 0.78rem;
    color: #888;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  #formStatus .alert {
    border-radius: 10px;
    font-size: 0.9rem;
    padding: 12px 16px;
  }

  /* ── Pooja Request Banner ── */
  .pooja-request-banner {
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
    border: 1px solid #f5c97a;
    border-left: 5px solid #cc4e00;
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 4px 16px rgba(204,78,0,0.12);
  }
  .pooja-banner-icon {
    font-size: 2.2rem;
    color: #cc4e00;
    flex-shrink: 0;
  }
  .pooja-banner-body { flex: 1; min-width: 180px; }
  .pooja-banner-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #8b0000;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 7px;
  }
  .pooja-banner-body p {
    font-size: 0.88rem;
    color: #555;
    margin-bottom: 4px;
    line-height: 1.5;
  }
  .pooja-banner-body p:last-child { margin-bottom: 0; }
  .pooja-email-link {
    color: #cc4e00;
    font-weight: 600;
    text-decoration: none;
  }
  .pooja-email-link:hover { text-decoration: underline; color: #cc4e00; }
  .btn-pooja-request {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #cc4e00, #ff9800);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 11px 22px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(204,78,0,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .btn-pooja-request:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(204,78,0,0.5);
    color: #fff;
    text-decoration: none;
  }