/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* Contact Hero */
.contact-hero { background: linear-gradient(135deg, #0d1b3e 0%, #1a237e 100%); color: white; padding: 120px 0 80px; margin-top: -80px; padding-top: calc(80px + 80px); }
.contact-hero .tvg-container { max-width: 900px; margin: 0 auto; text-align: center; padding: 0 20px; }
.contact-hero h1 { color: white; margin-bottom: 16px; }
.contact-hero p { opacity: 0.9; }

/* Contact form section */
.contact-form-section { padding: 80px 0; background: #fff; }
.contact-form-section .tvg-container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.contact-columns { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: start; }
@media (max-width: 767px) { .contact-columns { grid-template-columns: 1fr; gap: 40px; } }
.contact-info { text-align: center; }
.contact-info img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; margin-bottom: 24px; border: 3px solid #1a237e; }
.contact-info-item { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 12px; color: var(--tvg-headings-color); }
.contact-info-item svg { width: 20px; height: 20px; fill: #1a237e; }
.contact-info-item a { color: #1a237e; text-decoration: none; }

/* WhatsApp button */
.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 24px;
  background: #25D366;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}
.contact-whatsapp:hover {
  background: #1da851;
  transform: scale(1.05);
  color: #fff;
}
.contact-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Quote wizard */
.quote-section { padding: 80px 0; background: #f8f9fa; }
.quote-section .tvg-container { max-width: 700px; margin: 0 auto; padding: 0 20px; text-align: center; }
.quote-section h2 { color: var(--tvg-headings-color); margin-bottom: 32px; }

/* Step wizard */
.wizard { background: white; border-radius: 16px; padding: 40px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.wizard-progress { display: flex; justify-content: center; gap: 8px; margin-bottom: 32px; }
.wizard-dot { width: 12px; height: 12px; border-radius: 50%; background: #e5e7eb; transition: background 0.3s; }
.wizard-dot.active { background: #1a237e; }
.wizard-dot.completed { background: #c2185b; }
.wizard-step { display: none; }
.wizard-step.active { display: block; }
.wizard-step h3 { color: var(--tvg-headings-color); margin-bottom: 24px; }
.wizard-options { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.wizard-option { padding: 12px 24px; border: 2px solid #e5e7eb; border-radius: 30px; cursor: pointer; color: var(--tvg-color-text); background: white; transition: all 0.3s; }
.wizard-option:hover, .wizard-option.selected { border-color: #1a237e; color: #1a237e; background: #eef2ff; }
.wizard-form { display: flex; flex-direction: column; gap: 16px; }
.wizard-form input { padding: 12px 16px; border: 1px solid #e5e7eb; border-radius: 8px; }
.wizard-form input:focus { outline: none; border-color: #1a237e; box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.1); }
.wizard-submit { background: #c2185b; color: white; border: none; padding: 14px 32px; border-radius: 9px; font-weight: 600; cursor: pointer; transition: background 0.3s; }
.wizard-submit:hover { background: #ad1457; }

/* Contact form card styling */
.tvg-contact-form {
  background: #fff;
  border-radius: var(--tvg-radius-card, 12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 48px;
  max-width: 100%;
}

.tvg-contact-form input[type="text"],
.tvg-contact-form input[type="email"],
.tvg-contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  transition: border-color 0.2s;
  margin-bottom: 16px;
}

.tvg-contact-form input:focus,
.tvg-contact-form textarea:focus {
  outline: none;
  border-color: #1a237e;
  box-shadow: 0 0 0 3px rgba(26,35,126,0.1);
}

.tvg-contact-form textarea {
  min-height: 240px;
  resize: vertical;
}

.tvg-contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--tvg-color-text);
}

.tvg-contact-form button[type="submit"] {
  background: #c2185b;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.tvg-contact-form button[type="submit"]:hover {
  background: #a01550;
}
