
.contact-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 60px 5%;
  background: #ffffff;
}

.contact-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(48, 27, 243, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-content h1 {
  font-size: 3rem;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 40px;
}

.contact-content h1 span {
  color: var(--primary);
}

/* Contact Items */
.contact-options {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
}

.contact-item:hover {
  background: #f8f9ff;
}

.item-icon {
  font-size: 30px;
  color: var(--secondary);
}

.item-text h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.item-text p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 15px;
  max-width: 500px;
}

.item-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.item-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.item-btn.secondary {
  background: #1a1a1a;
}

/* SVG Styling */
.hub-svg {
  width: 100%;
  height: auto;
}

.rotating-ring {
  transform-origin: center;
  animation: rotateHub 30s linear infinite;
}

.pulse-center {
  transform-origin: center;
  animation: pulseHub 3s ease-in-out infinite;
}

@keyframes rotateHub {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseHub {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-visual { order: -1; max-width: 400px; margin: 0 auto; }
  .contact-item { flex-direction: column; align-items: center; }
  .contact-content h1 { font-size: 2.2rem; }
}










/* Section 2 */
.contact-full-wrapper {
  min-height: 100vh;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.contact-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: white;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(48, 27, 243, 0.08);
}

/* Left Panel */
.contact-info-panel {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 60px;
  color: white;
  display: flex;
  flex-direction: column;
}

.sub-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.contact-info-panel h1 {
  font-size: 2.8rem;
  margin: 25px 0;
  line-height: 1.2;
}

.contact-info-panel h1 span { color: var(--tertiary); }

.contact-methods { margin: 40px 0; }

.method-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.m-icon {
  font-size: 24px;
  color: var(--tertiary);
}

.m-text strong { display: block; font-size: 1.1rem; margin-bottom: 5px; }

.m-text p, .m-text a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

/* Right Panel / Form */
.contact-form-panel { padding: 60px; background: #fff; position: relative; }

.form-header h2 { font-size: 2rem; color: var(--text-dark); margin-bottom: 10px; }

.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.input-group { margin-bottom: 20px; display: flex; flex-direction: column; }

.input-group label {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #555;
}

.input-group input, .input-group select, .input-group textarea {
  padding: 12px 16px;
  border: 2px solid #eee;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.input-group input:focus { border-color: var(--primary); outline: none; }

.char-count { text-align: right; color: #999; font-size: 0.8rem; margin-top: 5px; }

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover { background: var(--secondary); transform: translateY(-2px); }

/* Success State */
.success-content { text-align: center; padding: 40px 0; }

.check-anim { font-size: 80px; color: #25D366; margin-bottom: 20px; }

.json-preview {
  background: #f0f0f5;
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
  font-family: monospace;
}

@media (max-width: 992px) {
  .contact-container { grid-template-columns: 1fr; }
  .contact-info-panel { padding: 40px; }
}