/* ===================================================
   VegeSoft — Custom overrides for Flex-IT dark theme
   =================================================== */

/* --------------------------------------------------
   Services section — Techvio services-4 card style
   -------------------------------------------------- */
.services-section-four {
  padding: 100px 0;
}

.vgz-service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 36px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.vgz-service-card:hover {
  border-color: var(--theme-color, #6c63ff);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(108, 99, 255, .18);
}

.vgz-service-card .service-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--theme-color, #6c63ff) 0%, var(--theme-color-2, #00d4d8) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.vgz-service-card .service-icon-wrap i {
  font-size: 28px;
  color: #fff;
}

.vgz-service-card .service-icon-wrap img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.vgz-service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color, #fff);
}

.vgz-service-card .service-desc {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--body-color, rgba(255,255,255,.65));
  margin-bottom: 20px;
}

.vgz-service-card .service-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 18px;
}

.vgz-service-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.vgz-service-card .features-list li {
  position: relative;
  padding-left: 18px;
  font-size: .875rem;
  line-height: 1.6;
  color: var(--body-color, rgba(255,255,255,.7));
  margin-bottom: 6px;
}

.vgz-service-card .features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--theme-color, #6c63ff);
}

.vgz-service-card .service-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--theme-color, #6c63ff);
  text-decoration: none;
  margin-top: auto;
  transition: gap .2s ease, color .2s ease;
}

.vgz-service-card .service-read-more i {
  font-size: 1.1rem;
  transition: transform .2s ease;
}

.vgz-service-card .service-read-more:hover {
  color: var(--theme-color-2, #00d4d8);
}

.vgz-service-card .service-read-more:hover i {
  transform: translateX(4px);
}

/* Light theme overrides */
.light-theme .vgz-service-card {
  background: #fff;
  border-color: #e8e8f0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

.light-theme .vgz-service-card:hover {
  border-color: var(--theme-color, #6c63ff);
  box-shadow: 0 12px 40px rgba(108, 99, 255, .14);
}

.light-theme .vgz-service-card h3 {
  color: #1a1a2e;
}

.light-theme .vgz-service-card .service-desc,
.light-theme .vgz-service-card .features-list li {
  color: #555;
}

.light-theme .vgz-service-card .service-divider {
  border-top-color: #eee;
}

.contact-section .contact-information-box-3,
.contact-section .contact-form-box {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
  padding: 32px;
  border-radius: 8px;
}

.contact-section .single-contact-info-box {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-section .single-contact-info-box:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.contact-section .contact-info h6 {
  margin-bottom: 8px;
  color: var(--theme-color-2, #00d4d8);
  font-size: .95rem;
  font-weight: 700;
}

.contact-section .contact-info p {
  margin-bottom: 4px;
}

.contact-section .contact-info a {
  color: inherit;
  text-decoration: none;
}

.contact-section .contact-info a:hover {
  color: var(--theme-color-2, #00d4d8);
}

.contact-section .form-input-box {
  margin-bottom: 18px;
}

.contact-section .form-control {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .18);
  color: #fff;
  border-radius: 6px;
  padding: 13px 16px;
}

.contact-section textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-section .form-control:focus {
  border-color: var(--theme-color-2, #00d4d8);
  box-shadow: none;
  background: rgba(0, 0, 0, .24);
  color: #fff;
}

.contact-section .form-control::placeholder {
  color: rgba(255, 255, 255, .65);
}

.contact-section .g-recaptcha {
  min-height: 78px;
}

.light-theme .contact-section .contact-information-box-3,
.light-theme .contact-section .contact-form-box {
  background: #fff;
  border-color: #e8e8f0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

.light-theme .contact-section .single-contact-info-box {
  border-bottom-color: #eee;
}

.light-theme .contact-section .form-control {
  background: #f8f9fb;
  border-color: #e6e8ef;
  color: #1a1a2e;
}

.light-theme .contact-section .form-control:focus {
  background: #fff;
  color: #1a1a2e;
}

.light-theme .contact-section .form-control::placeholder {
  color: #6c7280;
}
