/* Contact Page Styling for Pyzen Technologies */

.pz-contact-hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #311042 100%);
  color: #ffffff;
  padding: 80px 0 100px;
  text-align: center;
  overflow: hidden;
}

.pz-contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 15% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.pz-contact-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.pz-contact-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #ffffff, #e2e8f0, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pz-contact-hero p {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 30px;
}

.pz-contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pz-contact-pills span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  color: #f1f5f9;
  transition: all 0.3s ease;
}

.pz-contact-pills span:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Contact Main Columns */
.pz-contact-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.pz-contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.pz-contact-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .pz-contact-grid-layout {
    grid-template-columns: 350px 1fr;
  }
}

/* Sidebar Info */
.pz-contact-sidebar h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.pz-contact-sidebar > p {
  color: #64748b;
  margin-bottom: 36px;
}

.pz-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pz-contact-info-item {
  display: flex;
  align-items: start;
}

.pz-contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #dbeafe;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.pz-contact-info-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.pz-contact-info-content p, 
.pz-contact-info-content a {
  font-size: 15px;
  color: #475569;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.pz-contact-info-content a:hover {
  color: #2563eb;
}

/* Social Icons */
.pz-contact-socials {
  margin-top: 48px;
  border-top: 1px solid #e2e8f0;
  padding-top: 32px;
}

.pz-contact-socials h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 16px;
}

.pz-social-row {
  display: flex;
  gap: 12px;
}

.pz-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.pz-social-icon:hover {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: translateY(-2px);
}

/* Form Container */
.pz-contact-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f5f9;
  padding: 32px;
}

.pz-contact-form-wrapper h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}

/* Common FAQs section */
.pz-contact-faqs {
  margin-top: 64px;
}

.pz-contact-faqs h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 32px;
  text-align: center;
}

.pz-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .pz-faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pz-faq-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pz-faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.02), 0 4px 6px -4px rgba(0, 0, 0, 0.02);
}

.pz-faq-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.pz-faq-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.pz-faq-more-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pz-faq-more-link:hover {
  color: #1d4ed8;
}

/* Office Locations Section */
.pz-offices-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.pz-offices-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.pz-offices-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.pz-offices-header p {
  color: #64748b;
  font-size: 17px;
  line-height: 1.6;
}

.pz-seo-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.pz-seo-badge {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 9999px;
}

.pz-seo-badge-blue { background-color: #eff6ff; color: #1e40af; }
.pz-seo-badge-purple { background-color: #faf5ff; color: #6b21a8; }
.pz-seo-badge-green { background-color: #f0fdf4; color: #166534; }

.pz-offices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

@media (min-width: 1024px) {
  .pz-offices-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pz-office-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pz-office-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.pz-office-card-header {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  padding: 30px;
  color: #ffffff;
}

.pz-office-card-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.pz-office-address-row {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 14px;
  opacity: 0.95;
  line-height: 1.5;
}

.pz-office-address-row svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.pz-office-card-body {
  padding: 30px;
}

.pz-office-info-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pz-office-detail-row {
  display: flex;
  align-items: start;
  gap: 16px;
}

.pz-detail-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pz-detail-icon-blue { background-color: #eff6ff; color: #2563eb; }
.pz-detail-icon-purple { background-color: #faf5ff; color: #7c3aed; }
.pz-detail-icon-green { background-color: #f0fdf4; color: #16a34a; }

.pz-detail-content p.detail-label {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 2px;
  font-weight: 500;
}

.pz-detail-content .detail-value {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

.pz-detail-content a.detail-value {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pz-detail-content a.detail-value:hover {
  color: #1d4ed8;
}

.pz-business-hours-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.pz-business-hours-list div {
  display: flex;
  justify-content: space-between;
  width: 250px;
  font-size: 13.5px;
}

.pz-business-hours-list .hours-day {
  color: #475569;
  font-weight: 500;
}

.pz-business-hours-list .hours-time {
  color: #0f172a;
  font-weight: 600;
}

.pz-office-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.pz-office-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pz-office-btn-primary {
  background-color: #2563eb;
  color: #ffffff;
  border: 1px solid #2563eb;
}

.pz-office-btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

.pz-office-btn-secondary {
  background-color: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
}

.pz-office-btn-secondary:hover {
  background-color: #e2e8f0;
}

.pz-office-chips-title {
  font-size: 13px;
  color: #64748b;
  margin-top: 24px;
  margin-bottom: 8px;
  font-weight: 500;
}

.pz-office-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pz-office-chips span {
  font-size: 12px;
  background-color: #f1f5f9;
  color: #475569;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Interactive Map Row */
.pz-office-map-container {
  margin-top: 48px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.pz-office-map-header {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  padding: 20px 30px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pz-office-map-header h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.pz-office-map-header p {
  font-size: 13px;
  margin: 2px 0 0;
  opacity: 0.9;
}

.pz-map-external-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease;
}

.pz-map-external-link:hover {
  background: rgba(255, 255, 255, 0.25);
}

.pz-office-map-frame {
  height: 400px;
  width: 100%;
}

.pz-office-map-footer {
  padding: 20px 30px;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .pz-office-map-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.pz-map-footer-address {
  font-size: 14px;
  color: #475569;
}

.pz-map-footer-address p { margin: 0; }
.pz-map-footer-address p.detail-landmark {
  font-weight: 500;
  color: #0f172a;
  margin-top: 2px;
}

.pz-map-footer-link {
  color: #2563eb;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pz-map-footer-link:hover {
  color: #1d4ed8;
}

/* Service Areas Grid */
.pz-service-areas-block {
  margin-top: 64px;
  background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  border: 1px solid rgba(37, 99, 235, 0.05);
}

.pz-service-areas-block svg.area-icon {
  color: #2563eb;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.pz-service-areas-block h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.pz-service-areas-block p {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 16px;
}

.pz-areas-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto 36px;
}

@media (min-width: 768px) {
  .pz-areas-chip-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pz-area-chip-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 14px;
  font-weight: 500;
  font-size: 14px;
  color: #334155;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  border: 1px solid #e2e8f0;
}

.pz-areas-footer-info {
  font-size: 16px;
  color: #475569;
  margin-bottom: 24px;
}

.pz-areas-footer-info strong {
  color: #0f172a;
}

.pz-areas-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.pz-area-btn-tel {
  background-color: #2563eb;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease;
}

.pz-area-btn-tel:hover {
  background-color: #1d4ed8;
}

.pz-area-btn-mail {
  background-color: #ffffff;
  color: #2563eb;
  border: 1px solid #2563eb;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.pz-area-btn-mail:hover {
  background-color: #eff6ff;
}

/* Bottom CTA Section */
.pz-contact-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #ffffff;
  text-align: center;
}

.pz-contact-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.pz-contact-cta h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.pz-contact-cta p {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  opacity: 0.9;
  margin-bottom: 36px;
  line-height: 1.6;
}

.pz-cta-button-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-direction: column;
}

@media (min-width: 640px) {
  .pz-cta-button-group {
    flex-direction: row;
  }
}

.pz-cta-btn-white {
  background-color: #ffffff;
  color: #2563eb;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.pz-cta-btn-white:hover {
  background-color: #f8fafc;
}

.pz-cta-btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pz-cta-btn-outline:hover {
  background-color: #ffffff;
  color: #2563eb;
}
