/* ====================================================
   PATEL PUBLICITY - CONTACT PAGE STYLES
   ==================================================== */

/* Map placeholder */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  height: 400px;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  margin-top: 60px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  inset: 0;
  filter: invert(90%) hue-rotate(180deg) saturate(0.6);
}

.map-pin {
  font-size: 3rem;
  animation: float 3s ease-in-out infinite;
}

.map-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* FAQ */
.faq-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: rgba(255,107,43,0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 20px;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-item.open .faq-question {
  color: var(--primary);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,107,43,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.4s ease, background 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(255,107,43,0.25);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1), padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 28px 22px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Contact page specific */
.contact-top {
  padding: 160px 0 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0D0D1A 0%, #1A1A3E 100%);
}

.contact-info-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.contact-info-card h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info-card > p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.service-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,43,0.08);
  border: 1px solid rgba(255,107,43,0.2);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-light);
  transition: var(--transition);
}

.service-chip:hover {
  background: rgba(255,107,43,0.15);
  transform: translateY(-2px);
}

/* Form enhancements */
.form-input-wrapper {
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
}

.form-input-wrapper input,
.form-input-wrapper select {
  padding-left: 44px !important;
}

.form-submit-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-primary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(255,107,43,0.35);
  position: relative;
  overflow: hidden;
}

.form-submit-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.form-submit-btn:hover::before { left: 100%; }
.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255,107,43,0.5);
}

.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .contact-info-card { position: static; }
}

.contact-map-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 0 20px;
}
