h1,
h2,
h3,
h4,
h5,
.display-font {
  font-family: var(--font-display);
  font-weight: 700;
}

section {
  padding: 90px 0;
}

.bg-tinted {
  background-color: var(--bg-light);
}

.text-muted-custom {
  color: var(--text-muted);
}

.section-tag {
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  color: var(--accent-teal);
  display: block;
  margin-bottom: 10px;
}

/* --- Buttons --- */
.btn-custom {
  background-color: var(--secondary-orange);
  color: var(--primary-charcoal);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
}

.btn-custom:hover {
  background-color: transparent;
  border-color: var(--secondary-orange);
  color: var(--primary-charcoal);
  transform: translateY(-2px);
}

.btn-outline-custom {
  background-color: transparent;
  border: 2px solid var(--primary-charcoal);
  color: var(--primary-charcoal);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
  background-color: var(--primary-charcoal);
  color: var(--neutral-white);
}

/* --- Hero/Intro Section --- */
.hero-marketing {
  background: linear-gradient(
    135deg,
    var(--primary-charcoal) 60%,
    #1a2529 100%
  );
  color: var(--neutral-white);
  padding: 120px 0 90px 0;
}

/* --- About/Counters --- */
.about-img-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.inline-counter-box {
  background: var(--primary-charcoal);
  color: var(--neutral-white);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-orange);
}

.stat-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary-orange);
}

/* --- Service Cards --- */
.service-card {
  background: var(--neutral-white);
  border: 1px solid #eef2f4;
  border-radius: 12px;
  padding: 35px;
  height: 100%;
  transition: var(--transition-bounce);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(38, 50, 56, 0.06);
  border-color: transparent;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  color: var(--accent-teal);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--secondary-orange);
  color: var(--primary-charcoal);
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.service-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.service-list li i {
  color: var(--secondary-orange);
  margin-right: 8px;
}

/* --- Process Workflow --- */
.process-card {
  position: relative;
  text-align: center;
  padding: 20px;
}

.process-number {
  width: 70px;
  height: 70px;
  background: var(--neutral-white);
  border: 3px solid var(--secondary-orange);
  color: var(--primary-charcoal);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
  z-index: 2;
  position: relative;
}

.process-col {
  position: relative;
}

.process-col:not(:last-child)::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 35px;
  right: -15px;
  font-size: 1.2rem;
  color: var(--secondary-orange);
  z-index: 1;
}

@media (max-width: 991px) {
  .process-col:not(:last-child)::after {
    content: "\f063";
    top: auto;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
  }
}

/* --- Benefits Grid --- */
.benefit-item {
  background: var(--neutral-white);
  padding: 25px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.benefit-icon {
  color: var(--secondary-orange);
  font-size: 1.4rem;
  margin-right: 15px;
  margin-top: 3px;
}

/* --- Portfolio --- */
.portfolio-card {
  background: var(--neutral-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.portfolio-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.portfolio-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-charcoal);
  color: var(--neutral-white);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
}

.metric-pill {
  background: rgba(226, 183, 29, 0.12);
  color: var(--accent-teal);
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-block;
}

/* --- Pricing Packages --- */
.price-card {
  background: var(--neutral-white);
  border-radius: 16px;
  padding: 45px 35px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.02);
  border: 2px solid transparent;
  height: 100%;
  position: relative;
  transition: var(--transition-smooth);
}

.price-card.featured {
  border-color: var(--secondary-orange);
  transform: scale(1.03);
}

.featured-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-orange);
  color: var(--primary-charcoal);
  padding: 4px 18px;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 20px;
  text-transform: uppercase;
}

/* --- Industry Pills --- */
.industry-pill {
  background: var(--neutral-white);
  border: 1px solid #e2e8f0;
  padding: 16px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.industry-pill:hover {
  background: var(--primary-charcoal);
  color: var(--neutral-white);
  border-color: var(--primary-charcoal);
  transform: translateY(-3px);
}

/* --- Accordion FAQ --- */
.accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 8px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  overflow: hidden;
}

.accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 18px 25px;
  color: var(--primary-charcoal);
}

.accordion-button:not(.collapsed) {
  background: rgba(226, 183, 29, 0.08);
  color: var(--accent-teal);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

/* --- Form Design --- */
.lead-box {
  background: var(--primary-charcoal);
  color: var(--neutral-white);
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 20px 50px rgba(38, 50, 56, 0.2);
}

.lead-box .form-control,
.lead-box .form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--neutral-white);
  padding: 14px 18px;
}

.lead-box .form-control::placeholder {
  color: #90a4ae;
}

.lead-box .form-control:focus,
.lead-box .form-select:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary-orange);
  box-shadow: none;
  color: var(--neutral-white);
}

.lead-box .form-select option {
  background: var(--primary-charcoal);
  color: var(--neutral-white);
}

/* --- Toast Notification --- */
#formNotification {
  display: none;
  position: fixed;
  top: 35px;
  right: 35px;
  z-index: 1100;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: slideInLeft 0.4s ease forwards;
}

@keyframes slideInLeft {
  from {
    transform: translateX(120%);
  }
  to {
    transform: translateX(0);
  }
}
