
/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.88rem; font-weight: 600;
  padding: 13px 26px; border-radius: var(--radius);
  text-decoration: none; cursor: pointer; border: none;
  transition: all .25s ease; white-space: nowrap;
}
.btn-primary { background: var(--saffron); color: var(--white); box-shadow: 0 4px 15px rgba(232,119,34,0.25); }
.btn-primary:hover { background: var(--saffron-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,119,34,0.35); }
.btn-whatsapp { background: #25d366; color: var(--white); box-shadow: 0 4px 15px rgba(37,211,102,0.25); }
.btn-whatsapp:hover { background: #1fb855; transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--gov-blue); border: 1.5px solid var(--gray-200); }
.btn-outline-dark:hover { border-color: var(--gov-blue); background: var(--gov-blue-50); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-blue { background: var(--gov-blue); color: var(--white); }
.btn-blue:hover { background: var(--gov-blue-dark); transform: translateY(-2px); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 15px 32px; font-size: 0.92rem; }


/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(135deg, var(--gov-blue-dark) 0%, var(--gov-blue) 50%, var(--gov-blue-light) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 25%, rgba(232,119,34,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(19,136,8,0.05) 0%, transparent 50%);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container {
  position: relative; z-index: 1;
  padding: 52px 20px 60px;
  
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { font-size: 0.65rem; }
.page-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--white); line-height: 1.18;
  max-width: 680px; 
  animation: fadeInUp .7s ease;
  
}
.page-hero h2 .hl { color: var(--saffron); }
.page-hero .hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.68); max-width: 560px;
  line-height: 1.7; 
  animation: fadeInUp .7s .1s ease both;
}

/* ========== CONTACT METHODS STRIP ========== */
.contact-methods {
  background: var(--white);
  position: relative; z-index: 10;
  margin-top: -40px;
  padding: 0 0 48px;
}
.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 20px;
}
.method-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: .3s;
  position: relative;
  overflow: hidden;
}
.method-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.method-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.method-card.card-phone::before { background: var(--gov-blue); }
.method-card.card-whatsapp::before { background: #25d366; }
.method-card.card-visit::before { background: var(--saffron); }

.method-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 16px;
}
.method-card.card-phone .method-icon { background: var(--gov-blue-50); }
.method-card.card-whatsapp .method-icon { background: #e8f8ee; }
.method-card.card-visit .method-icon { background: #fff5eb; }

.method-card h3 { font-size: 1rem; font-weight: 700; color: var(--gov-blue); margin-bottom: 6px; }
.method-card .method-detail { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 4px; }
.method-card .method-sub { font-size: 0.78rem; color: var(--gray-500); margin-bottom: 18px; }
.method-card .method-value {
  font-size: 1.05rem; font-weight: 700; color: var(--gov-blue);
  margin-bottom: 16px; display: block;
}
.method-card .method-value a { color: inherit; text-decoration: none; }
.method-card .method-value a:hover { color: var(--saffron); }

/* ========== MAIN CONTACT LAYOUT ========== */
.contact-main { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: start;
}

/* ---- FORM ---- */
.form-panel {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.form-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));
}
.form-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; color: var(--gov-blue); margin-bottom: 6px;
}
.form-panel .form-subtitle {
  font-size: 0.88rem; color: var(--gray-500); margin-bottom: 28px; line-height: 1.6;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8rem; font-weight: 600; color: var(--gray-700);
  margin-bottom: 6px; display: flex; align-items: center; gap: 4px;
}
.form-group label .req { color: var(--saffron); font-weight: 700; }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.9rem; color: var(--gray-800);
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-50);
  transition: .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gov-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }
.form-group select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236c757d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-footer { margin-top: 24px; }
.form-note {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.76rem; color: var(--gray-500);
  margin-top: 14px; line-height: 1.55;
}
.form-note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--green); }

/* ---- SIDEBAR ---- */
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h4 {
  font-size: 0.95rem; font-weight: 700; color: var(--gov-blue);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.sidebar-card h4 .h-icon { font-size: 1.1rem; }

/* Hours */
.hours-list { list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.85rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--gray-700); font-weight: 500; }
.hours-list .time { color: var(--gov-blue); font-weight: 600; }
.hours-list .closed { color: var(--saffron); font-weight: 600; font-size: 0.8rem; }
.hours-note { font-size: 0.76rem; color: var(--gray-500); margin-top: 12px; padding-top: 10px; border-top: 1px dashed var(--gray-200); }

/* Quick Connect */
.quick-connect-btns { display: flex; flex-direction: column; gap: 10px; }

/* Languages */
.lang-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.lang-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 50px;
  border: 1px solid var(--gray-200);
  font-size: 0.82rem; font-weight: 600; color: var(--gray-700);
  background: var(--gray-50);
}
.lang-tag .flag { font-size: 1rem; }

/* Trust Badge */
.trust-badge-card {
  background: linear-gradient(135deg, var(--gov-blue-50), var(--white));
  border: 1px solid var(--gray-200);
  text-align: center;
}
.trust-badge-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gov-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 14px;
  position: relative;
}
.trust-badge-icon::after {
  content: ''; position: absolute; inset: 4px;
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: 50%;
}
.trust-badge-card h4 { justify-content: center; margin-bottom: 8px; }
.trust-badge-card p { font-size: 0.82rem; color: var(--gray-600); line-height: 1.6; }

/* ========== WHATSAPP CTA BANNER ========== */
.wa-banner {
  background: linear-gradient(135deg, #075e54 0%, #128c7e 60%, #25d366 100%);
  position: relative; overflow: hidden;
}
.wa-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20h20v20H20zM0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E");
}
.wa-banner .container {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 48px; padding-bottom: 48px;
  gap: 32px;
}
.wa-banner-content { flex: 1; }
.wa-banner-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--white); margin-bottom: 8px;
}
.wa-banner-content p { font-size: 0.95rem; color: rgba(255,255,255,0.75); max-width: 480px; line-height: 1.6; }
.wa-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-wa-white { background: var(--white); color: #075e54; font-weight: 700; }
.btn-wa-white:hover { background: #f0fdf4; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* ========== MAP SECTION ========== */
.map-section { background: var(--white); }
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  margin-top: 28px;
}
.map-placeholder {
  width: 100%; height: 380px;
  background:
    linear-gradient(135deg, var(--gov-blue-50) 0%, var(--off-white) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 20px;
}
.map-placeholder .map-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.map-placeholder h4 { font-size: 1rem; font-weight: 700; color: var(--gov-blue); }
.map-placeholder p { font-size: 0.85rem; color: var(--gray-500); max-width: 360px; }
.map-info-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.map-info-strip .address {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--gray-700); font-weight: 500;
}
.map-info-strip .address svg { width: 18px; height: 18px; color: var(--saffron); flex-shrink: 0; }

/* ========== TRUST NOTE ========== */
.trust-note {
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
}
.trust-note-inner {
  display: flex; align-items: flex-start; gap: 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.trust-note-icon {
  width: 52px; height: 52px; border-radius: var(--radius-lg);
  background: var(--gov-blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.trust-note-inner h3 { font-size: 1.05rem; font-weight: 700; color: var(--gov-blue); margin-bottom: 6px; }
.trust-note-inner p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

/* ========== FINAL CTA ========== */
.final-cta {
  background: linear-gradient(135deg, var(--gov-blue-dark), var(--gov-blue));
  position: relative; overflow: hidden;
  text-align: center; padding: 72px 0;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,119,34,0.08), transparent 60%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta .section-label { color: rgba(255,255,255,0.4); justify-content: center; }
.final-cta .section-label::before { background: rgba(255,255,255,0.2); }
.final-cta .section-title { color: var(--white); }
.final-cta p { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 520px; margin: 0 auto 32px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ========== RESPONSIVE ========== */

/* ---- Tablet landscape (≤ 900px): stack contact grid ---- */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Tablet portrait (≤ 768px) ---- */
@media (max-width: 768px) {
  /* Methods strip: 2 columns */
  .methods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* WhatsApp banner: stack vertically */
  .wa-banner .container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .wa-banner-content p { max-width: 100%; }
  .wa-banner-actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .wa-banner-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Trust note: stack icon + text */
  .trust-note-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    gap: 16px;
  }

  /* Final CTA actions: vertical */
  .final-cta { padding: 52px 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Map info strip: stack */
  .map-info-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ---- Mobile (≤ 600px): single-column form rows ---- */
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }

  .form-panel { padding: 24px 18px; }

  .sidebar-card { padding: 20px 18px; }
}

/* ---- Small mobile (≤ 480px): single-column methods ---- */
@media (max-width: 480px) {
  .methods-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .method-card { padding: 24px 18px; }

  .contact-methods {
    margin-top: -20px;
    padding-bottom: 36px;
  }

  .page-hero .container { padding: 36px 16px 44px; }

  .trust-note-inner { padding: 22px 16px; }

  .final-cta { padding: 44px 0; }

  /* Buttons full-width */
  .btn-block,
  .wa-banner-actions .btn,
  .cta-actions .btn { max-width: 100%; }
}