/* Ayelinklux - Business Services Page */

/* =========================================================
   INTRO
========================================================= */
.bizserv-intro-section {
  padding-top: 50px;
  padding-bottom: 10px;
  text-align: center;
}
.bizserv-intro-section h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.bizserv-intro-section p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

/* =========================================================
   QUICK ACTIONS UNDER HERO
========================================================= */
.bizserv-quick-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* =========================================================
   SERVICES GRID
========================================================= */
.bizserv-grid-section {
  padding-top: 30px;
  padding-bottom: 20px;
}
.bizserv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1600px;
  margin: 0 auto;
}
.bizserv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 26px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.bizserv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(27,46,94,0.1);
  border-color: var(--orange);
}
.bizserv-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(244,123,32,0.1);
  color: var(--orange);
  font-size: 22px;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.bizserv-card h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.bizserv-card > p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.bizserv-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bizserv-card-list li {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.bizserv-card-list i {
  color: #4cb050;
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .bizserv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .bizserv-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CUSTOM SYSTEMS CTA STRIP
========================================================= */
.bizserv-custom-strip {
  max-width: 1600px;
  margin: 20px auto 0;
  background: linear-gradient(135deg, var(--off-white) 0%, rgba(27,127,124,0.04) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.bizserv-custom-strip-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(27,127,124,0.1);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.bizserv-custom-strip-content {
  flex: 1;
  min-width: 240px;
}
.bizserv-custom-strip-content h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.bizserv-custom-strip-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}
.bizserv-custom-strip-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.bizserv-tag {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(27,127,124,0.08);
  border: 1px solid rgba(27,127,124,0.15);
  padding: 6px 12px;
  border-radius: 20px;
}

/* =========================================================
   COMMITMENT SECTION
========================================================= */
.bizserv-commitment-section {
  background: var(--off-white);
}
.bizserv-commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.bizserv-commitment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}
.bizserv-commitment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27,46,94,0.08);
}
.bizserv-commitment-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,168,0,0.12);
  color: var(--orange);
  font-size: 20px;
}
.bizserv-commitment-card h4 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.bizserv-commitment-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.7;
}

/* =========================================================
   REQUEST A SERVICE FORM
========================================================= */
.bizserv-form-section {
  padding-top: 40px;
  padding-bottom: 60px;
}
.bizserv-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 20px 50px rgba(27,46,94,0.06);
}
.bizserv-form-header {
  text-align: center;
  margin-bottom: 36px;
}
.bizserv-form-header h2 {
  font-size: 30px;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.bizserv-form-header p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}
.bizserv-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 20px;
}
.bizserv-field {
  display: flex;
  flex-direction: column;
}
.bizserv-field-full {
  grid-column: 1 / -1;
}
.bizserv-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.bizserv-field .optional {
  font-weight: 500;
  color: var(--text-light);
  text-transform: none;
}
.bizserv-field input,
.bizserv-field select,
.bizserv-field textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 15px;
  outline: none;
  transition: all 0.3s;
  resize: vertical;
}
.bizserv-field input:focus,
.bizserv-field select:focus,
.bizserv-field textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(244,123,32,0.1);
}
.bizserv-field input::placeholder,
.bizserv-field textarea::placeholder {
  color: #9CA3AF;
}
.bizserv-required {
  color: #ef4444;
}
.bizserv-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.bizserv-form-altcontact {
  text-align: center;
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--text-light);
}
.bizserv-form-altcontact a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}
.bizserv-form-altcontact a:hover {
  color: var(--orange);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .bizserv-commitment-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .bizserv-custom-strip { padding: 32px 26px; }
}
@media (max-width: 768px) {
  .bizserv-form-wrapper { padding: 36px 26px; }
  .bizserv-form-row { grid-template-columns: 1fr; margin-bottom: 4px; }
  .bizserv-field { margin-bottom: 16px; }
}
@media (max-width: 600px) {
  .bizserv-intro-section h2 { font-size: 26px; }
  .bizserv-form-header h2 { font-size: 24px; }
  .bizserv-custom-strip { flex-direction: column; text-align: center; }
  .bizserv-custom-strip-examples { justify-content: center; }
}