body { background-color: var(--bg-dark-purple); }

/* --- Banner --- */
.hero-section {
  background:
    linear-gradient(rgba(32, 5, 32, 0.7), rgba(32, 5, 32, 0.9)),
    url("../../../images/external/illustration-artificial-intelligence-design-vector-technology.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 85vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.accent-text {
  color: var(--accent);
}

/* --- Breadcrumb --- */
.breadcrumb-item+.breadcrumb-item::before {
  color: var(--text-main);
}

.breadcrumb-item.active {
  color: var(--text-main);
}

.breadcrumb-item a {
  color: var(--accent);
}

/* --- Service Hero Image --- */
.service-main-img-wrapper {
  position: relative;
  padding: 20px;
}

.main-service-img {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.experience-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--accent);
  color: black;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  box-shadow: 0 10px 30px rgba(249, 181, 34, 0.3);
}

/* --- Glass Sidebar Nav --- */
.glass-nav {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-side-nav .nav-link {
  color: var(--text-dim);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-side-nav .nav-link.active,
.service-side-nav .nav-link:hover {
  color: var(--accent);
  padding-left: 10px;
}

.cta-box {
  background: linear-gradient(135deg,
      rgba(249, 181, 34, 0.1) 0%,
      transparent 100%);
  border: 1px dashed var(--accent);
}

/* --- Feature Cards --- */
.feature-card-minimal {
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  transition: 0.3s;
}

.feature-card-minimal:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

/* --- Bento Grid (2-col services) --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-radius: 20px;
  overflow: hidden;
}

.bento-item {
  position: relative;
  min-height: 250px;
  border-radius: 20px;
  overflow: hidden;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: white;
  font-weight: bold;
}

/* --- Tech Pills --- */
.tech-pill {
  background: var(--deep-purple-page);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  font-size: 0.9rem;
  transition: 0.3s;
}

.tech-pill:hover {
  border-color: var(--accent);
  background: rgba(249, 181, 34, 0.1);
  color: var(--accent);
}

/* --- Specialization Cards --- */
.spec-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 24px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.spec-card:hover {
  background: rgba(249, 181, 34, 0.03);
  border-color: var(--accent);
  transform: translateY(-10px);
}

.spec-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(249, 181, 34, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.spec-list li {
  font-size: 0.8rem;
  color: white;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.spec-list li i {
  color: var(--accent);
  margin-right: 10px;
  font-size: 0.7rem;
}

/* --- Process Timeline --- */
.timeline-glass {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-item {
  text-align: center;
  flex: 1;
  z-index: 2;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 15px;
  box-shadow: 0 0 20px rgba(249, 181, 34, 0.4);
}

.step-connector {
  flex: 0.5;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  position: relative;
}

@media (max-width: 768px) {
  .timeline-glass {
    flex-direction: column;
    gap: 30px;
  }

  .step-connector {
    display: none;
  }
}

/* --- Contact Form Section --- */
.label-accent {
  color: var(--accent-yellow);
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: bold;
}

.line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--accent-yellow);
  vertical-align: middle;
  margin-right: 10px;
}

.text-secondary-muted {
  color: var(--text-muted);
}

.icon-box {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(251, 176, 52, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  background: rgba(251, 176, 52, 0.05);
}

.email-link {
  color: #9cdada;
  text-decoration: none;
  font-size: 1.2rem;
}

.form-control,
.form-select {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color-page);
  color: white !important;
  border-radius: 0;
}

.form-control:focus,
.form-select:focus {
  background-color: transparent;
  border-color: var(--accent-yellow);
  box-shadow: none;
}

.input-group-custom {
  transition: all 0.3s ease;
}

.input-group-custom:focus-within .form-label {
  color: var(--accent-yellow) !important;
}

.input-group-custom input::placeholder,
.input-group-custom textarea::placeholder {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

textarea.form-control {
  border: 1px solid var(--border-color-page);
  border-radius: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.upload-area {
  border: 1px dashed var(--border-color-page);
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.upload-area:hover {
  border-color: var(--accent-yellow);
  background: rgba(255, 255, 255, 0.03);
}

.upload-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.contact-checkbox {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.contact-checkbox:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

.contact-checkbox:focus {
  box-shadow: none;
  border-color: var(--accent);
}

.contact-email-link {
  color: var(--accent);
  text-decoration: none;
}

.contact-email-link:hover {
  text-decoration: underline;
  color: var(--accent);
}
