/* ==============================
   EGT GLOBAL — components.css
   Buttons, Cards, Badges, Headings
   ============================== */

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--btn-h);
  padding: 20px;
  border-radius: var(--btn-radius);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,17,31,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid var(--color-white);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-red-light);
  border: 1.5px solid var(--color-red-light);
}
.btn-outline-dark:hover {
  background: var(--color-red-light);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn-white {
  background: #FAFAFA !important;
  font-size: var(--fs-body);
  box-shadow: 0px 4px 4px 0px #00000040;
  color: var(--color-primary);
}
.btn-white:hover {
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}
.btn-sm {
  height: 38px;
  min-width: 126px;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
}

/* ---- Section Headings ---- */
.section-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-dark);
}

.section-subheading {
  font-family: var(--font-heading);
  font-size: var(--lh-body);
  font-weight: 500;
  text-align: center;
  color: var(--color-text-light);
  max-width: 689px;
  line-height: 35px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-heading {
  margin-bottom: 16px;
}

/* ---- Service Card ---- */
.service-card {
  background: #fff;
  padding: 60px 24px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;position: relative;
  margin-bottom: 75px;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(192,17,31,0.10);
  transform: translateY(-4px);
}

.service-card-img-section {
  width: 78px;
  height: 78px;
  background: var(--color-red-light);
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%); 
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-card-icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.3;
  min-height: 3rem;
}

.service-card p {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-secondary-text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}
