:root {
  --page-primary: #ec4899;
  --page-primary-light: #f472b6;
  --page-primary-dark: #db2777;
  --page-secondary: #f97316;
  --page-accent: #8b5cf6;
}
.hero-banner {
  background: linear-gradient(135deg, var(--page-primary-dark) 0%, var(--page-primary) 50%, var(--page-secondary) 100%);
  padding: 100px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.hero-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}
.section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--page-primary), var(--page-secondary));
  border-radius: 2px;
}
.section-title p {
  color: #6b7280;
  font-size: 1.1rem;
  margin-top: 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.contact-card {
  background: white;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.2);
}
.contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--page-primary), var(--page-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.contact-icon i {
  font-size: 2rem;
  color: white;
}
.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
}
.contact-card p {
  color: #6b7280;
  line-height: 1.6;
}
.contact-card .highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--page-primary);
}
.contact-card .sub-text {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-top: 5px;
}
.form-section {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--page-primary);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.submit-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--page-primary), var(--page-primary-light));
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}
.cta-section {
  background: linear-gradient(135deg, var(--page-primary-dark) 0%, var(--page-secondary) 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}
.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
}
.cta-button {
  display: inline-block;
  background: white;
  color: var(--page-primary);
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: var(--page-primary-dark);
}
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 25px; }
}
