/* ============================================================
   Alico-style theme — shared across every page
   Contents:
     - .al-tagline       (deep-blue top bar)
     - .al-header        (logo + 3 contact-info badges)
     - .al-nav           (black sticky nav strip)
     - .al-mega          (Products mega dropdown)
     - .al-btn           (dark / primary CTA buttons)
     - .al-eyebrow-arrows (eyebrow label with ‹‹‹ ››› chevrons)
     - Site-wide small-radius modernization overrides
   ============================================================ */

/* shared button system used across pages */
.al-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
}
.al-btn svg { width: 16px; height: 16px; }
.al-btn--dark {
  background: #0E1340;
  color: #FFFFFF;
}
.al-btn--dark:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(10,19,56,0.30);
}
.al-btn--primary {
  background: var(--brand-600);
  color: #FFFFFF;
}
.al-btn--primary:hover {
  background: var(--brand-700);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(57,87,255,0.35);
}

/* ── 1. TOP TAGLINE BAR ── */
.al-tagline {
  background: #0A1338;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  padding: 8px 0;
}
.al-tagline__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}
.al-tagline__msg strong { color: var(--brand-400); font-weight: 700; }
.al-tagline__right { display: flex; align-items: center; gap: var(--space-4); }
.al-tagline__social { display: flex; gap: 12px; }
.al-tagline__social a {
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  transition: color var(--t-fast);
}
.al-tagline__social a:hover { color: var(--brand-400); }
.al-tagline__social svg { width: 14px; height: 14px; }
.al-tagline__sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.25);
}
.al-tagline__lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
}
.al-tagline__lang-flag { font-size: 16px; line-height: 1; }

/* ── 2. CONTACT-INFO HEADER ── */
.al-header {
  background: #FFFFFF;
  padding: 20px 0;
  border-bottom: 1px solid var(--slate-100);
}
.al-header__container {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--space-10);
}
.al-header__logo img {
  height: 56px;
  width: auto;
  display: block;
}
.al-header__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  justify-content: end;
  margin-left: auto;
}
.al-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.al-info-item__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 100%);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(57,87,255,0.30);
  flex-shrink: 0;
}
.al-info-item__icon svg { width: 22px; height: 22px; }
.al-info-item__text { display: flex; flex-direction: column; line-height: 1.25; }
.al-info-item__label {
  font-size: 11px;
  color: var(--slate-500);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.al-info-item__value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-900);
  margin-top: 2px;
}
.al-info-item__sub {
  font-size: 12px;
  color: var(--slate-500);
  margin-top: 1px;
}
@media (max-width: 1100px) {
  .al-header__info { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .al-header__container { grid-template-columns: 1fr; }
  .al-header__info { grid-template-columns: 1fr; margin-left: 0; }
}

/* ── 3. BLACK NAV STRIP ── */
.al-nav {
  background: #0A1338;
  position: sticky;
  top: 0;
  z-index: 200;
}
.al-nav__container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  min-height: 56px;
  gap: var(--space-6);
}
.al-nav__home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  background: var(--brand-600);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
}
.al-nav__home::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 20px;
  background: var(--brand-600);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.al-nav__home svg { width: 16px; height: 16px; }

.al-nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  padding-left: 32px;
  margin: 0;
}
.al-nav__links li { list-style: none; }
.al-nav__links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 18px;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--t-fast);
  line-height: 56px;
}
.al-nav__links a svg { width: 12px; height: 12px; opacity: 0.6; }
.al-nav__links a:hover { color: var(--brand-400); }

/* mega dropdown on Products */
.al-nav__has-mega { position: relative; }
.al-nav__chev { transition: transform var(--t-base); }
.al-nav__has-mega:hover .al-nav__chev,
.al-nav__has-mega:focus-within .al-nav__chev { transform: rotate(180deg); }
.al-nav__has-mega::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px;
  pointer-events: auto;
}

.al-mega {
  position: absolute;
  top: calc(100% + 14px);
  left: -160px;
  width: 780px;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow:
    0 24px 60px rgba(10,19,56,0.28),
    0 8px 16px rgba(10,19,56,0.10),
    0 0 0 1px var(--slate-200);
  padding-top:    var(--space-8);
  padding-right:  var(--space-8);
  padding-bottom: var(--space-6);
  padding-left:   var(--space-8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  z-index: var(--z-dropdown);
}
.al-mega::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-700) 0%, var(--brand-500) 50%, var(--brand-700) 100%);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.al-mega::after {
  content: '';
  position: absolute;
  top: -7px;
  left: 176px;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand-500) 50%, #FFFFFF 50%);
  border-top: 1px solid var(--slate-200);
  border-left: 1px solid var(--slate-200);
  transform: rotate(45deg);
}
.al-nav__has-mega:hover .al-mega,
.al-nav__has-mega:focus-within .al-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.al-mega__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.al-mega__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 180ms ease, transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1), border-color 180ms ease;
  line-height: 1.3;
  border: 1px solid transparent;
}
.al-mega__item:hover {
  background: var(--brand-50);
  border-color: var(--brand-100);
  transform: translateY(-2px);
}
.al-mega__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--brand-50);
  color: var(--brand-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease, transform 220ms ease;
  box-shadow: inset 0 0 0 1px var(--brand-100);
}
.al-mega__item:hover .al-mega__icon {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  color: #FFFFFF;
  box-shadow: 0 8px 18px rgba(57,87,255,0.30);
  transform: scale(1.05);
}
.al-mega__icon svg { width: 22px; height: 22px; stroke-width: 1.75; }
.al-mega__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.al-mega__desc {
  font-size: 11.5px;
  color: var(--slate-500);
  line-height: 1.35;
}
.al-mega__footer {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  padding-right: 4px;
  padding-bottom: 0;
  padding-left: 4px;
  border-top: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.al-mega__footer-text {
  font-size: 12px;
  color: var(--slate-500);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.al-mega__footer-text::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-600);
  box-shadow: 0 0 0 3px rgba(57,87,255,0.18);
}
.al-mega__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(57,87,255,0.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.al-mega__cta svg { width: 14px; height: 14px; transition: transform var(--t-base); }
.al-mega__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(57,87,255,0.40);
}
.al-mega__cta:hover svg { transform: translateX(3px); }

.al-nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-right: 4px;
}
.al-nav__search {
  background: transparent;
  border: 0;
  color: var(--brand-400);
  cursor: pointer;
  display: inline-flex;
  padding: 6px;
}
.al-nav__search svg { width: 18px; height: 18px; }
.al-nav__branch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: var(--space-4);
  border-left: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
}
.al-nav__branch svg { width: 12px; height: 12px; }

@media (max-width: 900px) {
  .al-nav__container { grid-template-columns: auto 1fr; }
  .al-nav__right { display: none; }
  .al-nav__links { gap: 0; padding-left: 16px; overflow-x: auto; flex-wrap: nowrap; }
  .al-nav__links a { padding: 0 12px; }
  .al-mega { display: none; }
}

/* ── eyebrow with chevron arrows ── */
.al-eyebrow-arrows {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-4);
}
.al-eyebrow-arrows__l,
.al-eyebrow-arrows__r {
  color: var(--brand-600);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.al-eyebrow-arrows--center { justify-content: center; }

/* ─────────────────────────────────────────────────────────────
   SITE-WIDE MODERN SMALL-RADIUS OVERRIDES
   Triggered by class="alico-body" on <body>
   ───────────────────────────────────────────────────────────── */
.alico-body .why__card,
.alico-body .t-card,
.alico-body .t-card--feature,
.alico-body .faq .accordion__item,
.alico-body .bento__tile,
.alico-body .stat-card,
.alico-body .testimonial-card,
.alico-body .industry-card,
.alico-body .product-card,
.alico-body .step-card,
.alico-body .page-hero__pill,
.alico-body .accordion__item,
.alico-body .contact-info-item,
.alico-body .modal,
.alico-body .form-input,
.alico-body .form-textarea {
  border-radius: 8px;
}

.alico-body .btn,
.alico-body .btn-primary,
.alico-body .btn-secondary,
.alico-body .btn-outline,
.alico-body .btn-ghost,
.alico-body .btn-outline-white,
.alico-body .btn-sm,
.alico-body .btn-md,
.alico-body .btn-lg {
  border-radius: 6px;
}

.alico-body .why__card-icon,
.alico-body .bento__icon {
  border-radius: 8px;
}

.alico-body .faq .accordion__trigger {
  border-radius: 8px 8px 0 0;
}
