/* ==============================
   SHARED SECTION HELPERS
============================== */
.container { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-size: clamp(1.7rem, 1.35rem + 1.6vw, 2.3rem);
  color: #0a1a3c;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-subtitle {
  max-width: 680px;
  margin: 0 auto 44px;
  color: #475569;
  font-size: 16.5px;
  line-height: 1.75;
}

/* ==============================
   SERVICES SECTION
============================== */
.services-section { padding: 80px 20px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-item {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-left: 5px solid #6D5BF7;
  padding: 26px 24px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 8px 32px 0 rgba(10, 26, 60, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px 0 rgba(109, 91, 247, 0.12);
}
.service-icon { font-size: 2rem; margin-bottom: 10px; }
.service-item h3 { color: #0a1a3c; font-size: 18px; line-height: 1.35; margin-bottom: 8px; }
.service-item p { font-size: 15px; line-height: 1.6; color: #475569; }

/* ==============================
   OUR SOLUTIONS SECTION
============================== */
.our-solutions {
  padding: 80px 20px;
  background: linear-gradient(180deg, rgba(10,26,60,0.03) 0%, rgba(109,91,247,0.03) 100%);
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
}
.solution-card {
  position: relative;
  background: rgba(10, 26, 60, 0.85);
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: left;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.solution-card:hover {
  transform: translateY(-8px);
  border-color: #6D5BF7;
  box-shadow: 0 20px 40px rgba(109, 91, 247, 0.18);
}
.solution-icon { font-size: 2.2rem; margin-bottom: 12px; }
.solution-card h3 { color: #ffffff; font-size: 1.3rem; line-height: 1.3; margin-bottom: 5px; }
.solution-tagline { color: #6D5BF7; font-weight: 600; font-size: 13.5px; line-height: 1.45; margin-bottom: 14px; }
.solution-desc { color: #cbd5e1; font-size: 15px; line-height: 1.7; margin-bottom: 18px; flex-grow: 1; }
.solution-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  font-size: 14px; font-weight: 700;
  color: #ffffff;
  background: #6D5BF7;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}
.solution-btn:hover { background: #5142D9; transform: translateY(-2px); }

/* ==============================
   CONTACT / BOOK DEMO SECTION
============================== */
.contact-section { padding: 80px 20px; }
.contact-wrap { max-width: 640px; margin: 0 auto; }
.contact-form {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px 0 rgba(10, 26, 60, 0.06);
  text-align: left;
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.contact-toggle { display: flex; gap: 10px; margin-bottom: 20px; }
.toggle-btn {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(10,26,60,0.15);
  background: #ffffff;
  color: #0a1a3c;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.toggle-btn.active { background: #0a1a3c; color: #ffffff; border-color: #0a1a3c; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(10,26,60,0.15);
  background: rgba(255,255,255,0.85);
  font-family: inherit;
  font-size: 14.5px;
  color: #0a1a3c;
  outline: none;
  transition: border-color 0.2s ease;
  user-select: text;
}
.contact-form select { margin-bottom: 14px; }
.contact-form textarea { margin-bottom: 14px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: #6D5BF7; }
.contact-submit-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #6D5BF7, #7B3FE4);
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(123, 63, 228, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(123, 63, 228, 0.45); }
.contact-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.contact-note { text-align: center; font-size: 13px; line-height: 1.5; color: #64748b; margin-top: 14px; }
.contact-feedback { text-align: center; font-size: 13.5px; margin-top: 10px; min-height: 18px; font-weight: 600; }
.contact-feedback.success { color: #10b981; }
.contact-feedback.error { color: #ef4444; }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
  .solution-card { padding: 26px 22px; }
}
