/* Contact Page Styles */
.contact-hero-section {
  padding: 100px 20px;
  background-color: #f9f9f9;
}

.container-medium {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-heading {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #333;
}

.contact-subtext {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: fadeSlideUp 0.6s ease-out;
}

.form-field-wrapper {
  margin-bottom: 24px;
  animation: fadeSlideUp 0.4s ease-out calc(var(--index) * 0.1s) backwards;
}

.field-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.form-field {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-field:focus {
  border-color: #FF4A6E;
  outline: none;
}

.text-area {
  min-height: 120px;
  resize: vertical;
}

.submit-button {
  background: linear-gradient(to right, #FF4A6E, #FF758C);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
  width: 100%;
  animation: pulseGlow 2s infinite;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(to right, #FF3A5E, #FF658C);
}

.submit-button[data-wait="true"] {
  position: relative;
  color: transparent;
}

.submit-button[data-wait="true"]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.contact-info-wrapper {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: fadeSlideUp 0.6s ease-out 0.2s backwards;
}

.contact-info-block {
  margin-bottom: 40px;
}

.contact-info-block:last-child {
  margin-bottom: 0;
}

.contact-info-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #333;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  margin-top: 2px;
}

.contact-link {
  color: #FF4A6E;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: #FF758C;
}

.contact-text {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-hero-section {
    padding: 60px 20px;
  }
}

@media screen and (max-width: 767px) {
  .contact-heading {
    font-size: 32px;
  }
  
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 30px;
  }
}

/* Animation Keyframes */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 4px 20px rgba(255, 74, 110, 0);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 74, 110, 0.2);
  }
  100% {
    box-shadow: 0 4px 20px rgba(255, 74, 110, 0);
  }
}

/* Enhanced Feature Page Styles */
.feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #FF4A6E, #FF758C);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

/* New Visual Elements */
.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 1px 1px, #f0f0f0 1px, transparent 0);
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: linear-gradient(45deg, #FF4A6E22, #FF758C22);
  border-radius: 50%;
  animation: float 20s infinite linear;
}

/* Select Element Styling */
.form-field.w-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px;
  padding-right: 40px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 16px;
  color: #333333;
  height: 48px;
  line-height: 48px;
  padding-left: 16px;
  width: 100%;
  cursor: pointer;
}

.form-field.w-select:focus {
  border-color: #FF4A6E;
  outline: none;
}

/* Placeholder color */
.form-field.w-select option:first-child {
  color: #666666;
}

/* Selected option color */
.form-field.w-select option {
  color: #333333;
}

/* Hover state */
.form-field.w-select:hover {
  border-color: #CCCCCC;
}

