body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
}

/** {
  outline: 1px solid red;
}*/

.cw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  box-sizing: border-box;
}

/* Header Section */
.cw-header {
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: cw-fadeIn 0.8s ease-out forwards;
  padding: 0 1rem;
}

.cw-logo {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  color: #4f46e5;
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg, #4f46e5, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cw-tagline {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Form */
.cw-contact-container {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.cw-contact-form {
  flex: 1;
  min-width: 280px;
  background: white;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: 0.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(20px);
  animation: cw-fadeIn 0.8s ease-out 0.2s forwards;
  box-sizing: border-box;
}

.cw-form-title {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  margin-bottom: 1.25rem;
  color: #111827;
}

.cw-form-group {
  margin-bottom: 1.25rem;
}

.cw-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.cw-form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.cw-form-input:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.cw-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.cw-submit-btn {
  background: linear-gradient(90deg, #4f46e5, #8b5cf6);
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cw-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

/* Contact Info */
.cw-contact-info {
  flex: 1;
  min-width: 280px;
  opacity: 0;
  transform: translateY(20px);
  animation: cw-fadeIn 0.8s ease-out 0.4s forwards;
}

.cw-info-card {
  background: white;
  padding: clamp(1.5rem, 3vw, 2rem);
  padding-top: 0.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  box-sizing: border-box;
}

.cw-info-title {
  font-size: clamp(1.3rem, 3.5vw, 1.5rem);
  margin-bottom: 1.25rem;
  color: #111827;
}

.cw-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.cw-info-icon {
  margin-right: 1rem;
  color: #4f46e5;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  min-width: 24px;
}

.cw-info-icon.red {
  color: red;
}

.cw-info-icon.green {
  color: green;
}

.cw-info-icon.gold {
  color: gold;
}

.cw-info-text {
  flex: 1;
}

.cw-info-label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.cw-info-value {
  color: #6b7280;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  word-break: break-word;
}

/* Social Links */
.cw-social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.cw-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 8vw, 40px);
  height: clamp(36px, 8vw, 40px);
  border-radius: 50%;
  background: #f3f4f6;
  color: #4f46e5;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.cw-social-link:hover {
  background: #4f46e5;
  color: white;
  transform: translateY(-3px);
}

/* Animations */
@keyframes cw-fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .cw-container {
    padding: 1rem;
  }

  .cw-contact-container {
    gap: 1.5rem;
  }

  .cw-contact-form,
  .cw-contact-info {
    min-width: 100%;
  }

  .cw-info-item {
    flex-direction: column;
  }

  .cw-info-icon {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .cw-header {
    margin-bottom: 1.5rem;
  }

  .cw-contact-form {
    padding: 1.25rem;
  }

  .cw-info-card {
    padding: 1.25rem;
  }

  .cw-form-input {
    padding: 0.7rem 0.9rem;
  }

  .cw-submit-btn {
    padding: 0.8rem;
  }
}
