/* BridgeAxis Global - custom component styles
   Tailwind utilities are loaded via CDN; this file holds the @apply-style components. */

@layer components {
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: hsl(40 65% 55%);
  color: hsl(224 55% 12%);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.625rem;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: hsl(40 65% 48%);
}
.btn-primary:active {
  transform: translateY(1px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* === EYEBROW === */
.eyebrow {
  display: inline-block;
  color: hsl(40 65% 50%);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* === STAT CARDS (Why India) === */
.stat-card {
  background: #fff;
  border: 1px solid hsl(220 13% 88%);
  border-radius: 0.875rem;
  padding: 1.5rem 1.25rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.stat-card:hover {
  box-shadow: 0 10px 25px -10px rgba(15, 23, 41, 0.1);
  transform: translateY(-2px);
}
.stat-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: hsl(40 80% 92%);
  color: hsl(40 65% 45%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
}
.stat-value {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: hsl(224 55% 18%);
  line-height: 1;
}
.stat-label {
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: hsl(222 47% 11%);
}
.stat-desc {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: hsl(220 10% 45%);
  line-height: 1.5;
}

/* === FEATURE CARDS (About) === */
.feature-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: hsl(224 55% 18%);
  color: hsl(40 60% 95%);
  border-radius: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px -15px rgba(15, 23, 41, 0.4);
}
.feature-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background: hsl(40 65% 55%);
  color: hsl(224 55% 12%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(40 60% 95%);
}
.feature-desc {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: hsl(40 60% 95% / 0.75);
  line-height: 1.6;
}

/* === PRICING CARDS (Services) === */
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid hsl(220 13% 88%);
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(15, 23, 41, 0.12);
}
.pricing-card-featured {
  border: 2px solid hsl(40 65% 55%);
  box-shadow: 0 20px 40px -15px rgba(217, 165, 60, 0.25);
  transform: translateY(-8px);
}
.tier-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 9999px;
  align-self: flex-start;
}
.tier-badge-free {
  background: hsl(150 50% 92%);
  color: hsl(150 60% 30%);
}
.tier-badge-pro {
  background: hsl(40 80% 92%);
  color: hsl(40 65% 35%);
}
.pricing-title {
  margin-top: 1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: hsl(224 55% 18%);
  line-height: 1.2;
}
.pricing-desc {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: hsl(220 10% 45%);
  line-height: 1.55;
}
.pricing-divider {
  height: 1px;
  background: hsl(220 13% 88%);
  margin: 1.5rem 0;
}
.pricing-list-header {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: hsl(220 10% 45%);
  margin-bottom: 1rem;
}
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}
.pricing-list li {
  display: flex;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: hsl(222 47% 11% / 0.85);
  line-height: 1.55;
}
.pricing-note {
  font-size: 0.8125rem;
  color: hsl(220 10% 45%);
  font-style: italic;
  margin-bottom: 1.25rem;
}

/* === STEP CARDS (Approach) === */
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid hsl(220 13% 88%);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px rgba(15, 23, 41, 0.12);
}
.step-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background: hsl(40 80% 92%);
  color: hsl(40 65% 45%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(220 13% 80%);
  letter-spacing: 0.05em;
}
.step-title {
  margin-top: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: hsl(224 55% 18%);
  line-height: 1.25;
}
.step-desc {
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  color: hsl(220 10% 45%);
  line-height: 1.6;
}

/* === CASE CARDS === */
.case-card {
  background: #fff;
  border: 1px solid hsl(220 13% 88%);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(15, 23, 41, 0.15);
}
.case-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.case-card:hover .case-img-wrap img {
  transform: scale(1.05);
}
.case-country {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  background: hsl(224 55% 18%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}
.case-industry {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  background: hsl(40 65% 55%);
  color: hsl(224 55% 12%);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}
.case-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.case-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: hsl(224 55% 18%);
  line-height: 1.3;
}
.case-desc {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: hsl(220 10% 45%);
  line-height: 1.6;
  flex: 1;
}
.case-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(40 65% 45%);
  transition: gap 0.2s;
}
.case-link:hover {
  color: hsl(40 65% 35%);
}
.case-link:hover i {
  transform: translateX(3px);
  transition: transform 0.2s;
}

/* === CONTACT === */
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: hsl(40 80% 92%);
  color: hsl(40 65% 45%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: hsl(222 47% 11%);
}
.contact-value {
  font-size: 0.9375rem;
  color: hsl(220 10% 45%);
  margin-top: 0.125rem;
  display: block;
}
a.contact-value:hover {
  color: hsl(40 65% 45%);
}

/* === FORM === */
.form-card {
  background: #fff;
  border: 1px solid hsl(220 13% 88%);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 12px 30px -15px rgba(15, 23, 41, 0.1);
}
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(222 47% 11%);
  margin-bottom: 0.4rem;
}
.form-input {
  width: 100%;
  padding: 0.75rem 0.875rem;
  background: #fff;
  border: 1px solid hsl(220 13% 85%);
  border-radius: 0.625rem;
  font-size: 0.9375rem;
  color: hsl(222 47% 11%);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input::placeholder {
  color: hsl(220 13% 65%);
}
.form-input:focus {
  outline: none;
  border-color: hsl(40 65% 55%);
  box-shadow: 0 0 0 3px hsl(40 65% 55% / 0.18);
}
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.125rem;
  padding-right: 2.5rem;
}

/* === FOOTER === */
.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.footer-link {
  color: hsl(40 60% 95% / 0.75);
  transition: color 0.2s;
}
.footer-link:hover {
  color: hsl(40 65% 55%);
}

/* === HEADER scrolled state === */
#site-header.scrolled {
  box-shadow: 0 4px 20px -8px rgba(15, 23, 41, 0.08);
}

/* === SMOOTH SCROLL === */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
