/**
 * FHC Graphic CTA Banner Stylesheet
 * Microsoft Fluent 2 2.5D Style
 * chantroituonglai.com
 */

.fhc-graphic-cta-container {
  container-type: inline-size;
  margin: 48px 0;
  width: 100%;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.fhc-banner-cta-root {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 230px;
  padding: 32px 36px;
  box-shadow: 0 20px 40px -15px rgba(2, 132, 199, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  gap: 28px;
}

.fhc-banner-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 1;
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  filter: brightness(0.88) contrast(1.05);
}

.fhc-banner-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 15, 30, 0.95) 0%, rgba(10, 25, 47, 0.88) 55%, rgba(15, 23, 42, 0.55) 100%);
  z-index: 2;
}

.fhc-banner-cta-content {
  position: relative;
  z-index: 3;
  flex: 1;
  min-width: 0;
}

.fhc-banner-cta-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.fhc-banner-cta-logo {
  height: 44px !important;
  width: auto !important;
  max-width: 48px !important;
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  vertical-align: middle !important;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)) !important;
}

.fhc-banner-cta-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.fhc-banner-cta-title {
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  margin: 0 0 10px 0 !important;
  letter-spacing: -0.01em !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.fhc-banner-cta-desc {
  color: #cbd5e1 !important;
  font-size: 13.5px !important;
  line-height: 1.55 !important;
  margin: 0 0 16px 0 !important;
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.fhc-banner-cta-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #94a3b8;
}

.fhc-banner-cta-contact span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.fhc-banner-cta-actions {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.fhc-banner-cta-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 13px 22px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: 0 6px 20px -4px rgba(2, 132, 199, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.fhc-banner-cta-button:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px -4px rgba(2, 132, 199, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
}

@container (max-width: 680px) {
  .fhc-banner-cta-root {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 24px 20px !important;
    gap: 20px !important;
  }
  .fhc-banner-cta-actions {
    width: 100% !important;
  }
  .fhc-banner-cta-button {
    width: 100% !important;
  }
  .fhc-banner-cta-overlay {
    background: linear-gradient(180deg, rgba(8, 15, 30, 0.95) 0%, rgba(10, 25, 47, 0.92) 100%) !important;
  }
}

@media screen and (max-width: 767px) {
  .fhc-banner-cta-root {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 22px 18px !important;
    gap: 18px !important;
  }
  .fhc-banner-cta-actions {
    width: 100% !important;
  }
  .fhc-banner-cta-button {
    width: 100% !important;
  }
  .fhc-banner-cta-overlay {
    background: linear-gradient(180deg, rgba(8, 15, 30, 0.96) 0%, rgba(10, 25, 47, 0.92) 100%) !important;
  }
}
