/* Contact page - Cartoon Blue Style */

.credimetric-contact-main {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f4ff 100%);
  position: relative;
}

.credimetric-contact-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="4" fill="rgba(116,185,255,0.1)"/><circle cx="75" cy="75" r="6" fill="rgba(116,185,255,0.1)"/><circle cx="75" cy="25" r="3" fill="rgba(116,185,255,0.1)"/></svg>')
    repeat;
  animation: float 20s infinite linear;
}

.credimetric-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  position: relative;
  z-index: 1;
}

.credimetric-contact-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: #2c3e50;
  text-shadow: 0 4px 8px rgba(116, 185, 255, 0.3);
}

.credimetric-contact-description {
  color: #7f8c8d;
  margin-bottom: 3rem;
  line-height: 1.8;
  font-size: 1.2rem;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(116, 185, 255, 0.1);
  border-left: 6px solid #74b9ff;
}

.credimetric-contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.credimetric-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem;
  background: white;
  border-radius: 25px;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(116, 185, 255, 0.1);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.credimetric-contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #74b9ff 0%, #0984e3 50%, #6c5ce7 100%);
}

.credimetric-contact-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(116, 185, 255, 0.2);
  border-color: #74b9ff;
}

.credimetric-contact-icon {
  position: relative;
}

.credimetric-contact-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.credimetric-contact-icon img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 8px 16px rgba(116, 185, 255, 0.3));
  transition: transform 0.3s ease;
}

.credimetric-contact-item:hover .credimetric-contact-icon img {
  transform: scale(1.2) rotate(10deg);
}

.credimetric-contact-text h4 {
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: #2c3e50;
  font-size: 1.3rem;
}

.credimetric-contact-text p {
  color: #7f8c8d;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.credimetric-contact-note {
  color: #74b9ff;
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
}

.credimetric-company-info-card {
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  color: white;
  padding: 3rem;
  border-radius: 25px;
  margin-top: 3rem;
  box-shadow: 0 20px 40px rgba(116, 185, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.credimetric-company-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
}

.credimetric-company-info-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.credimetric-company-info-card p {
  margin-bottom: 0.8rem;
  line-height: 1.8;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.credimetric-contact-form-section {
  background: white;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(116, 185, 255, 0.15);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.credimetric-contact-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #74b9ff 0%, #0984e3 50%, #6c5ce7 100%);
}

.credimetric-contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.credimetric-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.credimetric-form-group {
  display: flex;
  flex-direction: column;
}

.credimetric-form-label {
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #2c3e50;
  font-size: 1.1rem;
}

.credimetric-form-input,
.credimetric-form-textarea,
.credimetric-form-select {
  padding: 1.2rem 1.5rem;
  border: 3px solid #e8f4ff;
  border-radius: 20px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  background: #f8f9ff;
}

.credimetric-form-input:focus,
.credimetric-form-textarea:focus,
.credimetric-form-select:focus {
  outline: none;
  border-color: #74b9ff;
  background: white;
  box-shadow: 0 8px 25px rgba(116, 185, 255, 0.2);
  transform: translateY(-2px);
}

.credimetric-checkbox-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.credimetric-checkbox-label:hover {
  background: #f8f9ff;
}

.credimetric-checkbox {
  width: 20px;
  height: 20px;
  accent-color: #74b9ff;
  transform: scale(1.2);
}

.credimetric-checkbox-text {
  color: #7f8c8d;
  font-size: 1rem;
  line-height: 1.6;
}

.credimetric-contact-faq {
  padding: 100px 0;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  color: white;
  position: relative;
}

.credimetric-contact-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 Q60 20 50 30 Q40 20 50 10" fill="rgba(255,255,255,0.1)"/><path d="M20 70 Q30 80 20 90 Q10 80 20 70" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
  animation: wave 6s infinite ease-in-out;
}

@keyframes wave {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.credimetric-contact-faq .credimetric-section-title {
  color: white;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.credimetric-contact-faq .credimetric-section-title::after {
  background: white;
}

.credimetric-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.credimetric-faq-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  color: #2c3e50;
  position: relative;
  overflow: hidden;
}

.credimetric-faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #74b9ff 0%, #0984e3 50%, #6c5ce7 100%);
}

.credimetric-faq-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.credimetric-faq-question {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  position: relative;
}

.credimetric-faq-question::before {
  content: "❓";
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.credimetric-faq-answer {
  color: #7f8c8d;
  line-height: 1.8;
  font-size: 1.1rem;
}

.credimetric-contact-disclaimer {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f4ff 100%);
  position: relative;
}

.credimetric-contact-disclaimer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,20 60,40 80,40 65,55 70,75 50,65 30,75 35,55 20,40 40,40" fill="rgba(255,193,7,0.1)"/></svg>')
    repeat;
  background-size: 80px 80px;
  animation: rotate 40s infinite linear;
}

.credimetric-disclaimer-card {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 4px solid #fdcb6e;
  padding: 3rem;
  border-radius: 25px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(253, 203, 110, 0.3);
  position: relative;
  z-index: 1;
}

.credimetric-disclaimer-title {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #d63031;
  text-shadow: 0 2px 4px rgba(214, 48, 49, 0.3);
  position: relative;
}

.credimetric-disclaimer-title::before {
  content: "⚠️";
  margin-right: 0.5rem;
  font-size: 1.5rem;
}

.credimetric-disclaimer-text {
  color: #6c5ce7;
  line-height: 1.8;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Contact page mobile responsive */
@media (max-width: 768px) {
  .credimetric-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .credimetric-form-row {
    grid-template-columns: 1fr;
  }

  .credimetric-contact-item {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .credimetric-disclaimer-card {
    padding: 2rem;
  }

  .credimetric-faq-grid {
    grid-template-columns: 1fr;
  }

  .credimetric-contact-form-section {
    padding: 2rem;
  }
}
