/* ============================================================
   GoCaters Premium Design System
   Shared design tokens, button styles, card patterns, and
   typography refinements. Loaded after style.css to override.
   ============================================================ */

:root {
  /* Brand colors */
  --gc-primary: #ff5e57;
  --gc-primary-dark: #e34d47;
  --gc-warning: #ffc107;
  --gc-success: #2e8b57;
  --gc-success-dark: #1f6b40;
  --gc-dark: #1a1c20;
  --gc-muted: #6b7280;
  --gc-text: #2b2e34;
  --gc-bg-soft: #f7f8fa;
  --gc-border: #eef0f4;
  --gc-line: #e5e7eb;

  /* Surfaces */
  --gc-surface: #ffffff;

  /* Spacing scale */
  --gc-space-1: 4px;
  --gc-space-2: 8px;
  --gc-space-3: 12px;
  --gc-space-4: 16px;
  --gc-space-5: 24px;
  --gc-space-6: 32px;
  --gc-space-7: 48px;
  --gc-space-8: 64px;

  /* Radius */
  --gc-radius-sm: 8px;
  --gc-radius-md: 12px;
  --gc-radius-lg: 16px;
  --gc-radius-pill: 999px;

  /* Shadows */
  --gc-shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.06);
  --gc-shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.07);
  --gc-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --gc-shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.10);

  /* Typography */
  --gc-font-sans: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --gc-letter-tight: -0.02em;
}

/* ----------- Subtle background utilities ----------- */
.bg-warning-subtle {
  background-color: rgba(255, 193, 7, 0.12) !important;
}
.bg-success-subtle {
  background-color: rgba(46, 139, 87, 0.12) !important;
}
.bg-primary-subtle {
  background-color: rgba(13, 110, 253, 0.10) !important;
}
.bg-danger-subtle {
  background-color: rgba(220, 53, 69, 0.10) !important;
}

/* ----------- Headings tightening on premium pages ----------- */
.title,
h1.heading,
h1.title,
h2.title,
h3.title {
  letter-spacing: var(--gc-letter-tight);
}

/* ----------- Buttons: shared treatments ----------- */
.btn {
  border-radius: var(--gc-radius-pill);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-success {
  background-color: var(--gc-success) !important;
  border-color: var(--gc-success) !important;
}
.btn-success:hover,
.btn-success:focus {
  background-color: var(--gc-success-dark) !important;
  border-color: var(--gc-success-dark) !important;
  box-shadow: 0 8px 18px rgba(46, 139, 87, 0.25);
}

.btn-outline-dark {
  border-color: var(--gc-line);
  color: var(--gc-text);
}
.btn-outline-dark:hover {
  background-color: var(--gc-text);
  border-color: var(--gc-text);
  color: #fff;
}

.btn-lg {
  padding: 12px 26px;
  font-size: 16px;
}

/* ----------- Card refinements ----------- */
.card.shadow-sm {
  box-shadow: var(--gc-shadow-sm) !important;
}
.card.shadow-lg {
  box-shadow: var(--gc-shadow-md) !important;
}
.card {
  border-radius: var(--gc-radius-lg);
}

/* ----------- Pricing card (combo pages) ----------- */
.pricing-card {
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gc-shadow-lg) !important;
}

/* ----------- Section spacing helper ----------- */
.section {
  padding: 64px 0;
}
.section-spacing-reduced {
  padding: 40px 0;
}

/* ----------- Hero-visual cleaner look ----------- */
.hero-visual,
.hero-visual-dark {
  border-radius: var(--gc-radius-lg);
  background: linear-gradient(135deg, #1f2228 0%, #2c3036 100%);
  color: #fff;
  box-shadow: var(--gc-shadow-md);
}
/* Only style the direct-child decorative icon, not icons inside badges, buttons, or nested elements */
.hero-visual > i,
.hero-visual-dark > i {
  font-size: 56px;
  color: var(--gc-warning);
}

/* ----------- Trust badges ----------- */
.trust-badge {
  border-radius: var(--gc-radius-md) !important;
  border: 1px solid var(--gc-border);
}
.trust-badge p {
  letter-spacing: 0.02em;
}

/* ----------- Section heading harmony ----------- */
.section-title h3.title,
.section-title h2.title {
  font-weight: 700;
  letter-spacing: var(--gc-letter-tight);
  color: var(--gc-text);
}

/* ----------- Header quick-action buttons ----------- */
#topnav .buy-button {
  display: flex !important;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  float: none !important;
  line-height: 1 !important;
}

/* Desktop: keep WhatsApp/Call snug between logo and nav menu */
@media (min-width: 992px) {
  header#topnav .container {
    gap: 12px !important;
  }
  #topnav .buy-button {
    margin: 0 4px !important;
  }
  /* Override the legacy 20px left padding on the first nav item so the
     gap after the Call button matches the gap before WhatsApp */
  header#topnav #navigation .navigation-menu li:first-child {
    margin-left: 0 !important;
  }
}
#topnav .buy-button .btn-pills {
  font-weight: 600;
}
#topnav .buy-button .btn-quick-action i {
  margin-right: 6px;
  vertical-align: middle;
}
#topnav .buy-button .btn-quick-action .btn-label {
  vertical-align: middle;
}

/* Mobile + tablet header layout: keep logo, CTAs, and hamburger on one row */
@media (max-width: 991.98px) {
  header#topnav .container {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 8px;
  }
  header#topnav .logo-container {
    flex: 0 1 auto;
    margin-right: auto;
    min-width: 0;
  }
  header#topnav .logo img {
    max-height: 48px;
    height: auto;
    width: auto;
  }
  #topnav .buy-button {
    display: flex !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
    float: none !important;
    line-height: 1 !important;
  }
  #topnav .buy-button .btn-quick-action {
    padding: 7px 12px !important;
    font-size: 13px !important;
  }
}

/* Smallest phones: collapse to icon-only quick actions to save room for the hamburger */
@media (max-width: 575.98px) {
  #topnav .buy-button {
    display: flex !important;
    gap: 4px;
  }
  #topnav .buy-button .btn-quick-action {
    padding: 8px 10px !important;
    min-width: 38px;
    line-height: 1 !important;
  }
  #topnav .buy-button .btn-quick-action i {
    margin-right: 0 !important;
    font-size: 16px;
  }
  #topnav .buy-button .btn-quick-action .btn-label {
    display: none !important;
  }
}

/* Override the legacy rule that hid the buttons on screens <= 375px */
@media (max-width: 375px) {
  #topnav .buy-button {
    display: flex !important;
  }
}

/* Prevent body scroll when mobile menu is open */
body.nav-open-body {
  overflow: hidden;
}

/* Make sure the hamburger is always tappable above any sibling overlay */
@media (max-width: 991.98px) {
  #topnav .menu-extras {
    position: relative;
    z-index: 100001;
    flex-shrink: 0;
  }
  #topnav .navbar-toggle {
    pointer-events: auto !important;
  }
}

/* ----------- Footer polish ----------- */
.footer .footer-list a.text-foot {
  transition: color 160ms ease, transform 160ms ease;
}
.footer .footer-list a.text-foot:hover {
  color: #fff !important;
  transform: translateX(2px);
  display: inline-block;
}

/* ----------- Sticky bottom mobile CTA helper (optional) ----------- */
.gc-mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1040;
  display: none;
  background: var(--gc-success);
  color: #fff !important;
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--gc-radius-pill);
  font-weight: 700;
  box-shadow: var(--gc-shadow-lg);
}
@media (max-width: 575.98px) {
  .gc-mobile-cta {
    display: block;
  }
}
.gc-mobile-cta:hover {
  color: #fff !important;
  background: var(--gc-success-dark);
}

/* ----------- Reduce decorative emoji weight in copy ----------- */
.section-title p,
.title-heading p {
  line-height: 1.7;
}

/* ----------- Better focus styles for accessibility ----------- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gc-warning);
  outline-offset: 2px;
}

/* ============================================================
   Homepage premium components
   ============================================================ */

/* Section heading kicker (small label above title) */
.gc-section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gc-success);
  background: rgba(46, 139, 87, 0.08);
  padding: 6px 14px;
  border-radius: var(--gc-radius-pill);
  margin-bottom: 16px;
}

.gc-section h2,
.gc-section .title {
  letter-spacing: var(--gc-letter-tight);
}

/* Soft alternating section background */
.gc-section-soft {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

/* ----------- Event-type cards ----------- */
.event-card {
  position: relative;
  display: block;
  border-radius: var(--gc-radius-lg);
  overflow: hidden;
  background: #1a1c20;
  aspect-ratio: 1 / 1;
  box-shadow: var(--gc-shadow-sm);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.94) 100%);
  z-index: 1;
  pointer-events: none;
}
.event-card-cover {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  text-decoration: none;
}
.event-card-cover img,
.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gc-shadow-lg);
}
.event-card:hover .event-card-cover img,
.event-card:hover img {
  transform: scale(1.05);
}
.event-card .event-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px 16px;
  z-index: 2;
  color: #fff;
}
.event-card .event-card-title-link {
  color: #fff;
  text-decoration: none !important;
  display: inline-block;
}
.event-card .event-card-title-link:hover .event-card-title {
  color: var(--gc-warning);
}
.event-card .event-card-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 3px;
  letter-spacing: 0.01em;
  transition: color 150ms ease;
}
.event-card .event-card-meta {
  font-size: 12.5px;
  opacity: 0.85;
  margin: 0;
}
.event-card .event-card-links {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 3;
}
.event-card .event-card-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  padding: 3px 0;
  transition: color 150ms ease;
  white-space: nowrap;
}
.event-card .event-card-links a + a {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.event-card .event-card-links a:hover {
  color: var(--gc-warning);
}
.event-card .event-card-links a i {
  font-size: 13px;
  opacity: 0.9;
}
.event-card .event-card-arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  z-index: 2;
  transition: background 200ms ease, transform 200ms ease;
}
.event-card:hover .event-card-arrow {
  background: var(--gc-warning);
  color: var(--gc-dark);
  transform: rotate(-45deg);
}

/* ----------- Why-us refined cards ----------- */
.why-card {
  background: #fff;
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-lg);
  padding: 28px 26px;
  height: 100%;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gc-shadow-md);
  border-color: rgba(255, 193, 7, 0.4);
}
.why-card .why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 193, 7, 0.12);
  color: var(--gc-warning);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.why-card h5 {
  font-weight: 700;
  color: var(--gc-text);
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.why-card p {
  color: var(--gc-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* ----------- How it works premium timeline ----------- */
.gc-steps {
  position: relative;
}
@media (min-width: 992px) {
  .gc-steps::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 38px;
    height: 2px;
    background: repeating-linear-gradient(
      to right,
      var(--gc-line) 0 8px,
      transparent 8px 16px
    );
    z-index: 0;
  }
}
.gc-step {
  background: #fff;
  border-radius: var(--gc-radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--gc-border);
  position: relative;
  z-index: 1;
  height: 100%;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.gc-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--gc-shadow-md);
}
.gc-step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gc-warning) 0%, #ffb300 100%);
  color: #1a1c20;
  font-weight: 800;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(255, 193, 7, 0.35);
  letter-spacing: 0.02em;
}
.gc-step h5 {
  font-weight: 700;
  color: var(--gc-text);
  margin-bottom: 8px;
  font-size: 17px;
}
.gc-step p {
  color: var(--gc-muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

/* ----------- Stat cards (refined trust numbers) ----------- */
.stat-card {
  background: #fff;
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-lg);
  padding: 30px 22px;
  text-align: center;
  height: 100%;
}
.stat-card .stat-number {
  font-size: clamp(34px, 5vw, 44px);
  font-weight: 800;
  color: var(--gc-text);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat-card .stat-label {
  font-size: 14px;
  color: var(--gc-muted);
  margin: 0;
  letter-spacing: 0.02em;
}
.stat-card .stat-icon {
  color: var(--gc-warning);
  font-size: 22px;
  margin-bottom: 8px;
}

/* ----------- Signature menu cards ----------- */
.menu-card {
  background: #fff;
  border-radius: var(--gc-radius-lg);
  overflow: hidden;
  box-shadow: var(--gc-shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gc-shadow-md);
}
.menu-card .menu-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f3f4f6;
}
.menu-card .menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.menu-card:hover .menu-card-img img {
  transform: scale(1.04);
}
.menu-card .menu-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--gc-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--gc-radius-pill);
}
.menu-card .menu-card-body {
  padding: 22px 22px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.menu-card h5 {
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 10px;
  color: var(--gc-text);
}
.menu-card .menu-card-desc {
  color: var(--gc-muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 14px;
}
.menu-card .menu-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.menu-card .menu-card-list li {
  font-size: 13.5px;
  color: var(--gc-text);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
}
.menu-card .menu-card-list li::before {
  content: "•";
  color: var(--gc-warning);
  font-weight: 800;
  margin-right: 10px;
  flex-shrink: 0;
}
.menu-card .menu-card-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--gc-line, rgba(0, 0, 0, 0.08));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.menu-card .menu-card-price {
  font-weight: 800;
  color: var(--gc-text);
  font-size: 18px;
  letter-spacing: -0.01em;
}
.menu-card .menu-card-price small {
  font-weight: 500;
  color: var(--gc-muted);
  font-size: 12.5px;
  margin-left: 2px;
}
.menu-card .menu-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 18px;
  background: var(--gc-text);
  color: #fff !important;
  border: 1.5px solid var(--gc-text);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease, color 200ms ease;
}
.menu-card .menu-card-cta i {
  font-size: 16px;
  transition: transform 200ms ease;
}
.menu-card .menu-card-cta:hover {
  background: var(--gc-primary, #ff5e57);
  border-color: var(--gc-primary, #ff5e57);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(255, 94, 87, 0.25);
}
.menu-card .menu-card-cta:hover i {
  transform: translateX(3px);
}
.menu-card .menu-card-cta:focus-visible {
  outline: 3px solid rgba(255, 94, 87, 0.35);
  outline-offset: 2px;
}

/* ----------- Testimonial preview cards ----------- */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-lg);
  padding: 28px 26px;
  height: 100%;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gc-shadow-md);
}
.testimonial-card .testimonial-quote-mark {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 56px;
  color: rgba(255, 193, 7, 0.25);
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 700;
}
.testimonial-card .testimonial-stars {
  color: var(--gc-warning);
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.testimonial-card .testimonial-text {
  color: var(--gc-text);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 22px;
}
.testimonial-card .testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gc-border);
  padding-top: 16px;
}
.testimonial-card .testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gc-warning) 0%, #ffa000 100%);
  color: #1a1c20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial-card .testimonial-name {
  font-weight: 700;
  color: var(--gc-text);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.3;
}
.testimonial-card .testimonial-event {
  font-size: 12.5px;
  color: var(--gc-muted);
  margin: 2px 0 0;
}

/* ----------- FAQ ----------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.faq-item[open] {
  border-color: rgba(255, 193, 7, 0.45);
  box-shadow: var(--gc-shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--gc-text);
  font-size: 15.5px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--gc-warning);
  margin-left: 14px;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 200ms ease;
}
.faq-item[open] summary::after {
  content: "−";
  transform: rotate(0deg);
}
.faq-item .faq-answer {
  padding: 0 22px 20px;
  color: var(--gc-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ----------- Final CTA banner ----------- */
.cta-banner {
  background: linear-gradient(135deg, #1a1c20 0%, #2a2e36 60%, #1f3a2c 100%);
  color: #fff;
  border-radius: var(--gc-radius-lg);
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h3 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.65;
  max-width: 540px;
  margin: 0;
}
.cta-banner .cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cta-banner .cta-actions .btn {
  padding: 12px 24px;
}

/* ----------- Hero refinements (additive) ----------- */
.gc-hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 24px;
  margin-top: 28px;
}
.gc-hero-trust .gc-hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.gc-hero-trust .gc-hero-trust-item i {
  color: var(--gc-warning);
  font-size: 18px;
}

/* ----------- Refined recent events grid hover ----------- */
.recent-tile {
  border-radius: var(--gc-radius-lg);
  overflow: hidden;
  box-shadow: var(--gc-shadow-sm);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.recent-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--gc-shadow-md);
}
.recent-tile .recent-tile-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}
.recent-tile:hover .recent-tile-img {
  transform: scale(1.04);
}

/* ----------- Contact card polish ----------- */
.contact-detail .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.12) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  flex-shrink: 0;
}
.contact-detail .icon i {
  color: var(--gc-warning);
  font-size: 20px;
}

/* ----------- Mobile spacing tightening for homepage ----------- */
@media (max-width: 575.98px) {
  .gc-section,
  .section {
    padding: 44px 0 !important;
  }
  .cta-banner {
    padding: 36px 24px;
    text-align: center;
  }
  .cta-banner .cta-actions {
    justify-content: center;
  }
  .event-card {
    aspect-ratio: 5 / 6;
  }
  .event-card .event-card-body {
    padding: 12px 14px 14px;
  }
  .event-card .event-card-title {
    font-size: 16px;
  }
  .event-card .event-card-meta {
    font-size: 12.5px;
  }
  .event-card .event-card-links {
    margin-top: 8px;
    padding-top: 8px;
  }
  .event-card .event-card-links a {
    font-size: 11.5px;
  }
  .event-card .event-card-links a + a {
    margin-left: 8px;
    padding-left: 8px;
  }
}
