/*
Theme Name: Falcon Contracting
Theme URI: https://falcon-contracting.com
Description: Custom child theme for Falcon Contracting Inc. Built on Astra. Provides brand colors, typography, and component utilities used by the homepage and all marketing pages. Designed to work with Elementor Pro (Advanced Solo or higher).
Author: Falcon Contracting Inc.
Author URI: https://falcon-contracting.com
Template: astra
Version: 1.0.8
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: falcon-contracting
*/

/* ==============================================================
   FALCON CONTRACTING — BRAND FOUNDATION
   Version 1.0.0
   --------------------------------------------------------------
   All component classes are prefixed `fc-` and applied to
   Elementor sections/columns/widgets via the "CSS Classes"
   field under each element's Advanced tab.
   ============================================================== */

/* --- Brand tokens (CSS variables) --- */
:root {
  /* Brand color palette */
  --fc-yellow: #fff200;
  --fc-yellow-tint: rgba(255, 242, 0, 0.04);
  --fc-yellow-border: rgba(255, 242, 0, 0.30);
  --fc-yellow-strong: rgba(255, 242, 0, 0.40);
  --fc-black: #000000;

  /* Dark surfaces (used in layered sections) */
  --fc-bg: #0a0a0a;
  --fc-bg-2: #111111;
  --fc-bg-3: #161616;
  --fc-bg-4: #1a1a1a;

  /* Borders */
  --fc-border: rgba(255, 255, 255, 0.06);
  --fc-border-mid: rgba(255, 255, 255, 0.10);
  --fc-border-strong: rgba(255, 255, 255, 0.18);

  /* Text */
  --fc-text: #ffffff;
  --fc-text-mute: rgba(255, 255, 255, 0.70);
  --fc-text-soft: rgba(255, 255, 255, 0.55);
  --fc-text-faint: rgba(255, 255, 255, 0.45);
  --fc-text-dim: rgba(255, 255, 255, 0.35);

  /* Type */
  --fc-font-display: 'Montserrat', system-ui, -apple-system, sans-serif;
  --fc-font-body: 'Roboto', system-ui, -apple-system, sans-serif;

  /* Letter-spacing tokens */
  --fc-letter-eyebrow: 0.22em;
  --fc-letter-label: 0.08em;
  --fc-letter-tight: -0.015em;

  /* Shape */
  --fc-radius-sm: 3px;
  --fc-radius-md: 4px;
  --fc-radius-lg: 8px;

  /* Section rhythm */
  --fc-section-py: 80px;
  --fc-section-px: 32px;
}

/* --- Global body styling on Falcon pages --- */
body.fc-dark-page {
  background-color: var(--fc-bg);
  color: var(--fc-text);
  font-family: var(--fc-font-body);
  -webkit-font-smoothing: antialiased;
}

body.fc-dark-page .site,
body.fc-dark-page .site-content,
body.fc-dark-page #content {
  background-color: var(--fc-bg);
}

/* Hide Astra default page title bar when in Elementor pages */
body.fc-dark-page .ast-page-title-bar,
body.fc-dark-page .entry-header {
  display: none !important;
}

/* --- Typography utilities --- */
/* All target both the wrapper class AND the inner Elementor heading element,
   so they work whether you apply the class to the widget or the element itself. */

.fc-eyebrow,
.fc-eyebrow .elementor-heading-title {
  font-family: var(--fc-font-display) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: var(--fc-letter-eyebrow) !important;
  color: var(--fc-yellow) !important;
  text-transform: uppercase !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

.fc-section-title,
.fc-section-title .elementor-heading-title {
  font-family: var(--fc-font-display) !important;
  font-weight: 500 !important;
  letter-spacing: var(--fc-letter-tight) !important;
  color: var(--fc-text) !important;
  line-height: 1.1 !important;
  font-size: 32px !important;
}
@media (max-width: 768px) {
  .fc-section-title,
  .fc-section-title .elementor-heading-title {
    font-size: 26px !important;
  }
}

.fc-section-sub,
.fc-section-sub p,
.fc-section-sub .elementor-widget-container p {
  font-family: var(--fc-font-body) !important;
  font-size: 14px !important;
  color: var(--fc-text-soft) !important;
  line-height: 1.65 !important;
}

.fc-hl {
  color: var(--fc-yellow);
}

/* --- Hero title with three-line treatment --- */
.fc-hero-title,
.fc-hero-title .elementor-heading-title {
  font-family: var(--fc-font-display) !important;
  font-weight: 500 !important;
  letter-spacing: var(--fc-letter-tight) !important;
  line-height: 1.05 !important;
  color: var(--fc-text) !important;
}

.fc-hero-title .fc-tl { display: block; }
.fc-hero-title em,
.fc-hero-title .elementor-heading-title em,
.fc-hero-title .fc-hl {
  color: var(--fc-yellow) !important;
  font-style: normal !important;
}

/* --- Buttons (override Elementor button styles) ---
   Match the class whether it's on the wrapper, the button itself, or an anchor */
.fc-btn-primary > .elementor-button,
.fc-btn-primary .elementor-button,
.elementor-button.fc-btn-primary,
a.fc-btn-primary {
  background-color: var(--fc-yellow) !important;
  background-image: none !important;
  color: var(--fc-black) !important;
  border: none !important;
  border-radius: var(--fc-radius-sm) !important;
  padding: 14px 26px !important;
  font-family: var(--fc-font-display) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.03em !important;
  text-transform: none !important;
  transition: filter 0.2s ease, transform 0.2s ease !important;
}
.fc-btn-primary .elementor-button:hover,
.elementor-button.fc-btn-primary:hover,
a.fc-btn-primary:hover {
  filter: brightness(1.10) !important;
  transform: translateY(-1px) !important;
}

.fc-btn-outline > .elementor-button,
.fc-btn-outline .elementor-button,
.elementor-button.fc-btn-outline,
a.fc-btn-outline {
  background-color: transparent !important;
  background-image: none !important;
  color: var(--fc-text) !important;
  border: 1px solid var(--fc-border-strong) !important;
  border-radius: var(--fc-radius-sm) !important;
  padding: 13px 25px !important;
  font-family: var(--fc-font-display) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.03em !important;
  text-transform: none !important;
  transition: border-color 0.2s ease, color 0.2s ease !important;
}
.fc-btn-outline .elementor-button:hover,
.elementor-button.fc-btn-outline:hover,
a.fc-btn-outline:hover {
  border-color: var(--fc-yellow) !important;
  color: var(--fc-yellow) !important;
}

.fc-btn-yellow-outline > .elementor-button,
.fc-btn-yellow-outline .elementor-button,
.elementor-button.fc-btn-yellow-outline,
a.fc-btn-yellow-outline {
  background-color: transparent !important;
  background-image: none !important;
  color: var(--fc-yellow) !important;
  border: 1px solid var(--fc-yellow) !important;
  border-radius: var(--fc-radius-sm) !important;
  padding: 12px 22px !important;
  font-family: var(--fc-font-display) !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
}
.fc-btn-yellow-outline .elementor-button:hover,
.elementor-button.fc-btn-yellow-outline:hover {
  background-color: var(--fc-yellow) !important;
  color: var(--fc-black) !important;
}

/* --- Road-stripe decorative accents --- */
/* Horizontal stripe — overrides Elementor flex container defaults */
.fc-stripe-h,
.e-con.fc-stripe-h,
.elementor-element.fc-stripe-h {
  display: block !important;
  height: 4px !important;
  min-height: 4px !important;
  max-height: 4px !important;
  width: 100% !important;
  background-color: transparent !important;
  background-image: repeating-linear-gradient(90deg, var(--fc-yellow) 0 32px, transparent 32px 52px) !important;
  opacity: 0.5 !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: none !important;
}

/* Vertical stripe — apply this class directly to a SECTION (not as an HTML widget).
   Uses pseudo-element so positioning anchors to the section itself. */
.fc-hero-with-stripe { position: relative !important; }
.fc-hero-with-stripe::after {
  content: '';
  position: absolute;
  top: 100px;
  bottom: 80px;
  right: 40px;
  width: 4px;
  background: repeating-linear-gradient(180deg, var(--fc-yellow) 0 22px, transparent 22px 38px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .fc-hero-with-stripe::after {
    right: 20px;
    top: 80px;
    bottom: 60px;
  }
}

/* Original fc-stripe-v utility — kept for when used inside an explicitly-positioned wrapper */
.fc-stripe-v {
  display: block;
  width: 4px;
  height: 100%;
  background: repeating-linear-gradient(180deg, var(--fc-yellow) 0 22px, transparent 22px 38px);
  opacity: 0.4;
}

/* Add a yellow left-edge stripe to any section (apply to section's CSS Classes) */
.fc-section-stripe-left {
  border-left: 4px solid var(--fc-yellow);
}

/* Diagonal corner stripe on cards */
.fc-card-corner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: repeating-linear-gradient(135deg, var(--fc-yellow) 0 3px, transparent 3px 7px);
  opacity: 0.2;
  pointer-events: none;
}

/* --- Card surfaces --- */
.fc-card {
  background: var(--fc-bg-3) !important;
  border: 1px solid var(--fc-border) !important;
  border-radius: var(--fc-radius-md) !important;
  padding: 24px 20px !important;
  position: relative !important;
  overflow: hidden !important;
}

.fc-card-darker {
  background: var(--fc-bg) !important;
}

/* --- Spec compliance badges (used in "What We Do" section header) --- */
.fc-spec-row {
  display: flex !important;
  gap: 8px !important;
  margin-bottom: 32px !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

.fc-spec-label {
  font-family: var(--fc-font-display) !important;
  font-size: 10px !important;
  color: var(--fc-text-soft) !important;
  letter-spacing: 0.1em !important;
  margin-right: 4px !important;
  text-transform: uppercase !important;
}

.fc-spec-badge {
  display: inline-block;
  font-family: var(--fc-font-display);
  font-size: 11px;
  font-weight: 500;
  padding: 6px 12px;
  margin: 0 6px 6px 0;
  border: 1px solid var(--fc-yellow-border);
  border-radius: var(--fc-radius-sm);
  color: var(--fc-text);
  letter-spacing: var(--fc-letter-label);
  text-transform: uppercase;
}

/* --- Service cards (3 main + 6 specialty in "What We Do" section) --- */
.fc-services-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
  margin-bottom: 28px !important;
}

@media (max-width: 768px) {
  .fc-services-grid { grid-template-columns: 1fr !important; }
}

/* Icon for a service card */
.fc-svc-icon {
  width: 36px !important;
  height: 36px !important;
  border: 1.5px solid var(--fc-yellow) !important;
  border-radius: var(--fc-radius-md) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 14px !important;
  color: var(--fc-yellow) !important;
  font-size: 18px !important;
}

.fc-svc-icon i,
.fc-svc-icon svg {
  color: var(--fc-yellow) !important;
  fill: var(--fc-yellow) !important;
  width: 18px !important;
  height: 18px !important;
}

.fc-svc-meta,
.fc-svc-meta .elementor-heading-title {
  font-family: var(--fc-font-display) !important;
  font-size: 10px !important;
  letter-spacing: 0.1em !important;
  color: var(--fc-yellow) !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  margin: 0 0 6px 0 !important;
}

.fc-svc-name,
.fc-svc-name .elementor-heading-title {
  font-family: var(--fc-font-display) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: var(--fc-text) !important;
  margin: 0 0 8px 0 !important;
  letter-spacing: -0.005em !important;
  line-height: 1.2 !important;
}

.fc-svc-desc,
.fc-svc-desc p,
.fc-svc-desc .elementor-widget-container p {
  font-family: var(--fc-font-body) !important;
  font-size: 13px !important;
  color: var(--fc-text-soft) !important;
  line-height: 1.55 !important;
  margin: 0 0 14px 0 !important;
}

.fc-svc-link,
.fc-svc-link a,
.fc-svc-link .elementor-widget-container a {
  font-family: var(--fc-font-display) !important;
  font-size: 11px !important;
  color: var(--fc-yellow) !important;
  letter-spacing: 0.06em !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}

/* Specialty services subsection */
.fc-specialty-block {
  border-top: 1px solid var(--fc-border) !important;
  padding-top: 24px !important;
  margin-top: 28px !important;
}

.fc-specialty-label,
.fc-specialty-label .elementor-heading-title {
  font-family: var(--fc-font-display) !important;
  font-size: 11px !important;
  letter-spacing: 0.16em !important;
  color: var(--fc-text-faint) !important;
  margin: 0 0 14px 0 !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
}

.fc-specialty-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 8px !important;
}

@media (max-width: 768px) {
  .fc-specialty-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 480px) {
  .fc-specialty-grid { grid-template-columns: 1fr !important; }
}

.fc-specialty-item {
  background: var(--fc-bg-3);
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius-sm);
  padding: 12px 14px;
}

.fc-specialty-name {
  font-family: var(--fc-font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--fc-text);
  margin: 0 0 4px 0;
}

.fc-specialty-desc {
  font-family: var(--fc-font-body);
  font-size: 11px;
  color: var(--fc-text-soft);
  line-height: 1.45;
  margin: 0;
}

/* --- Certification chips (DBE, SBE, WBE, WOSB, AMP) --- */
.fc-cert-chip {
  display: inline-block;
  font-family: var(--fc-font-display);
  font-size: 12px;
  font-weight: 500;
  padding: 9px 16px;
  margin: 0 8px 8px 0;
  border: 1px solid var(--fc-yellow);
  border-radius: var(--fc-radius-sm);
  color: var(--fc-yellow);
  background: var(--fc-yellow-tint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fc-cert-chip-sm {
  font-size: 10px;
  padding: 4px 10px;
  letter-spacing: 0.08em;
}

/* --- Filter pills (Projects section) --- */
.fc-filter-pill {
  display: inline-block;
  font-family: var(--fc-font-display);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  margin: 0 4px 4px 0;
  border: 1px solid var(--fc-border-strong);
  border-radius: 100px;
  color: var(--fc-text);
  background: transparent;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: all 0.15s ease;
}
.fc-filter-pill:hover { border-color: var(--fc-yellow); }
.fc-filter-pill.active {
  background: var(--fc-yellow);
  border-color: var(--fc-yellow);
  color: var(--fc-black);
}

/* --- Stat counter typography --- */
.fc-stat-num,
.fc-stat-num .elementor-heading-title {
  font-family: var(--fc-font-display) !important;
  color: var(--fc-yellow) !important;
  font-weight: 500 !important;
  font-size: 40px !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  margin: 0 !important;
}

.fc-stat-label,
.fc-stat-label .elementor-widget-container p,
.fc-stat-label p {
  font-family: var(--fc-font-display) !important;
  font-size: 12px !important;
  color: var(--fc-text-soft) !important;
  letter-spacing: var(--fc-letter-label) !important;
  text-transform: uppercase !important;
  line-height: 1.4 !important;
  margin: 6px 0 0 0 !important;
}

@media (max-width: 768px) {
  .fc-stat-num,
  .fc-stat-num .elementor-heading-title { font-size: 32px !important; }
}

/* --- AirMark section layout --- */
.fc-airmark-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important;
  gap: 36px !important;
  align-items: center !important;
}

@media (max-width: 768px) {
  .fc-airmark-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

.fc-airmark-title,
.fc-airmark-title .elementor-heading-title {
  font-family: var(--fc-font-display) !important;
  font-size: 28px !important;
  font-weight: 500 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.01em !important;
  color: var(--fc-text) !important;
  margin: 0 0 14px 0 !important;
}

.fc-airmark-title sup,
.fc-airmark-title .elementor-heading-title sup {
  font-size: 14px !important;
  vertical-align: super !important;
  color: inherit !important;
}

@media (max-width: 768px) {
  .fc-airmark-title,
  .fc-airmark-title .elementor-heading-title { font-size: 24px !important; }
}

/* Map container */
.fc-map-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.fc-map-svg {
  max-width: 280px;
  width: 100%;
  height: auto;
}

.fc-map-legend {
  display: flex;
  gap: 18px;
  font-family: var(--fc-font-display);
  font-size: 10px;
  color: var(--fc-text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.fc-map-legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  vertical-align: middle;
}

/* AMP badge */
.fc-amp-badge {
  width: 110px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.fc-amp-caption {
  text-align: center;
  font-family: var(--fc-font-display);
  font-size: 10px;
  color: var(--fc-text-faint);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* --- Business Certifications band --- */
.fc-certs-band {
  background: var(--fc-bg) !important;
  padding: 36px 32px !important;
  border-top: 1px solid var(--fc-border) !important;
  border-bottom: 1px solid var(--fc-border) !important;
}

.fc-certs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.fc-certs-left {
  flex: 1;
  min-width: 260px;
}

.fc-certs-eyebrow {
  font-family: var(--fc-font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--fc-yellow);
  text-transform: uppercase;
  margin: 0;
}

.fc-certs-text {
  font-family: var(--fc-font-body);
  font-size: 13px;
  color: var(--fc-text-soft);
  line-height: 1.55;
  margin: 8px 0 0 0;
  max-width: 380px;
}

.fc-certs-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* --- Projects grid --- */
.fc-projects-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
}

@media (max-width: 768px) {
  .fc-projects-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 480px) {
  .fc-projects-grid { grid-template-columns: 1fr !important; }
}

/* --- Project card overlays --- */
.fc-project-card {
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: var(--fc-radius-md) !important;
  background-color: var(--fc-bg-4) !important;
  background-size: cover !important;
  background-position: center !important;
  aspect-ratio: 4 / 3 !important;
  text-decoration: none !important;
  transition: transform 0.25s ease;
}
.fc-project-card:hover {
  transform: translateY(-3px);
}
.fc-project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 35%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.fc-project-card .fc-project-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--fc-font-display);
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  background: rgba(0,0,0,0.65);
  border: 1px solid var(--fc-yellow-border);
  border-radius: 100px;
  color: var(--fc-yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fc-project-card .fc-project-title {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  font-family: var(--fc-font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--fc-text);
  line-height: 1.3;
}
.fc-project-card .fc-project-meta {
  font-family: var(--fc-font-display);
  font-size: 10px;
  color: var(--fc-text-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
  font-weight: 400;
}

.fc-projects-cta-wrap {
  text-align: center;
  margin-top: 28px;
}

/* --- Leadership card ---
   Used for the homepage Leadership teaser. Each card has a circular
   photo, role label, and name. */
.fc-leadership-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 10px !important;
}
@media (max-width: 768px) {
  .fc-leadership-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .fc-leadership-grid { grid-template-columns: 1fr !important; }
}

.fc-leader-card {
  background: var(--fc-bg) !important;
  border: 1px solid var(--fc-border) !important;
  border-radius: var(--fc-radius-md) !important;
  padding: 20px 12px !important;
  text-align: center;
}

.fc-leader-photo {
  width: 88px !important;
  height: 88px !important;
  border-radius: 50% !important;
  background: var(--fc-bg-4);
  border: 2px solid var(--fc-yellow) !important;
  margin: 0 auto 14px !important;
  object-fit: cover !important;
  display: block !important;
}

.fc-leader-photo-placeholder {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--fc-bg-4);
  border: 2px solid var(--fc-yellow);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fc-yellow);
  font-family: var(--fc-font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.fc-leader-role {
  font-family: var(--fc-font-display);
  font-size: 9px;
  color: var(--fc-yellow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 4px 0;
  font-weight: 500;
  line-height: 1.3;
}

.fc-leader-name {
  font-family: var(--fc-font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--fc-text);
  line-height: 1.3;
  margin: 0;
}

.fc-leadership-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.fc-view-team-link {
  font-family: var(--fc-font-display);
  font-size: 11px;
  color: var(--fc-yellow);
  letter-spacing: 0.06em;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}

/* --- Core Values grid --- */
.fc-values-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1px !important;
  background: var(--fc-border) !important;
  border: 1px solid var(--fc-border) !important;
}
@media (max-width: 768px) {
  .fc-values-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .fc-values-grid { grid-template-columns: 1fr !important; }
}

.fc-value-cell {
  background: var(--fc-bg-2);
  padding: 24px 20px;
}

.fc-value-cell .fc-value-num {
  font-family: var(--fc-font-display);
  font-size: 11px;
  color: var(--fc-yellow);
  font-weight: 500;
  letter-spacing: 0.14em;
  margin: 0 0 12px 0;
  text-transform: uppercase;
}

.fc-value-name {
  font-family: var(--fc-font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--fc-text);
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.fc-value-desc {
  font-family: var(--fc-font-body);
  font-size: 13px;
  color: var(--fc-text-soft);
  line-height: 1.55;
  margin: 0;
}

.fc-value-empty {
  background: var(--fc-bg);
  padding: 24px 20px;
  display: flex;
  align-items: flex-end;
}

.fc-value-empty-text {
  font-family: var(--fc-font-display);
  font-size: 11px;
  color: var(--fc-text-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* --- Benefits grid (Why Work For Us) --- */
.fc-benefits-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px !important;
  margin-bottom: 24px !important;
}
@media (max-width: 768px) {
  .fc-benefits-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 480px) {
  .fc-benefits-grid { grid-template-columns: 1fr !important; }
}

.fc-benefit-card {
  background: var(--fc-bg-3);
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius-md);
  padding: 20px 16px;
}

.fc-benefit-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--fc-yellow-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--fc-yellow);
}

.fc-benefit-icon svg {
  width: 16px;
  height: 16px;
}

.fc-benefit-name {
  font-family: var(--fc-font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fc-text);
  margin: 0 0 6px 0;
}

.fc-benefit-desc {
  font-family: var(--fc-font-body);
  font-size: 12px;
  color: var(--fc-text-soft);
  line-height: 1.5;
  margin: 0;
}

/* --- Our Story --- */
.fc-story-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important;
  gap: 36px !important;
  align-items: center !important;
}
@media (max-width: 768px) {
  .fc-story-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
}

.fc-story-year-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: baseline;
}

.fc-story-year {
  font-family: var(--fc-font-display);
  font-size: 32px;
  color: var(--fc-yellow);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}

.fc-story-year-label {
  font-family: var(--fc-font-display);
  font-size: 11px;
  color: var(--fc-text-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.fc-story-body {
  font-family: var(--fc-font-body);
  font-size: 14px;
  color: var(--fc-text-mute);
  line-height: 1.65;
  margin: 0 0 18px 0;
}

.fc-story-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--fc-radius-md);
}

.fc-photo-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--fc-bg-4);
  border: 1px dashed var(--fc-border-strong);
  border-radius: var(--fc-radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--fc-text-dim);
  font-family: var(--fc-font-display);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  gap: 6px;
}

/* --- Final CTA (yellow block) --- */
.fc-final-cta-section {
  background: var(--fc-yellow) !important;
  color: var(--fc-black) !important;
  padding: 70px 32px !important;
  text-align: center !important;
}

.fc-final-cta-title,
.fc-final-cta-title .elementor-heading-title {
  font-family: var(--fc-font-display) !important;
  font-size: 32px !important;
  font-weight: 500 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.01em !important;
  color: var(--fc-black) !important;
  margin: 0 0 12px 0 !important;
}
@media (max-width: 768px) {
  .fc-final-cta-title,
  .fc-final-cta-title .elementor-heading-title { font-size: 26px !important; }
}

.fc-final-cta-sub,
.fc-final-cta-sub p,
.fc-final-cta-sub .elementor-widget-container p {
  font-family: var(--fc-font-body) !important;
  font-size: 14px !important;
  color: rgba(0, 0, 0, 0.7) !important;
  line-height: 1.6 !important;
  max-width: 460px !important;
  margin: 0 auto 24px auto !important;
}

/* Dark buttons (for use on yellow Final CTA background) */
.fc-btn-dark > .elementor-button,
.fc-btn-dark .elementor-button,
.elementor-button.fc-btn-dark,
a.fc-btn-dark {
  background-color: var(--fc-black) !important;
  background-image: none !important;
  color: var(--fc-yellow) !important;
  border: none !important;
  border-radius: var(--fc-radius-sm) !important;
  padding: 14px 24px !important;
  font-family: var(--fc-font-display) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.03em !important;
  text-transform: none !important;
  transition: filter 0.2s ease !important;
}
.fc-btn-dark .elementor-button:hover,
.elementor-button.fc-btn-dark:hover {
  filter: brightness(1.4) !important;
}

.fc-btn-dark-outline > .elementor-button,
.fc-btn-dark-outline .elementor-button,
.elementor-button.fc-btn-dark-outline,
a.fc-btn-dark-outline {
  background-color: transparent !important;
  background-image: none !important;
  color: var(--fc-black) !important;
  border: 1.5px solid var(--fc-black) !important;
  border-radius: var(--fc-radius-sm) !important;
  padding: 13px 23px !important;
  font-family: var(--fc-font-display) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.03em !important;
  text-transform: none !important;
  transition: background 0.2s ease, color 0.2s ease !important;
}
.fc-btn-dark-outline .elementor-button:hover,
.elementor-button.fc-btn-dark-outline:hover {
  background: var(--fc-black) !important;
  color: var(--fc-yellow) !important;
}

/* --- Footer (global, used in Theme Builder Footer template) --- */
.fc-footer-section {
  background: #050505 !important;
  padding: 48px 32px 24px !important;
  color: rgba(255, 255, 255, 0.7);
}

.fc-footer-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr !important;
  gap: 28px !important;
  margin-bottom: 28px !important;
}
@media (max-width: 768px) {
  .fc-footer-grid { grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
}
@media (max-width: 480px) {
  .fc-footer-grid { grid-template-columns: 1fr !important; }
}

.fc-footer-col h4 {
  font-family: var(--fc-font-display) !important;
  font-size: 11px !important;
  color: var(--fc-yellow) !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  margin: 0 0 14px 0 !important;
  font-weight: 500 !important;
}

.fc-footer-col p,
.fc-footer-col li {
  font-family: var(--fc-font-body);
  font-size: 12px;
  color: var(--fc-text-soft);
  line-height: 1.65;
  margin: 0 0 6px 0;
}

.fc-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fc-footer-col a {
  color: var(--fc-text-soft);
  text-decoration: none;
  transition: color 0.15s ease;
}
.fc-footer-col a:hover { color: var(--fc-yellow); }

.fc-footer-cert-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.fc-footer-cert-chip {
  font-family: var(--fc-font-display);
  font-size: 9px;
  padding: 3px 8px;
  border: 1px solid var(--fc-yellow-border);
  border-radius: 2px;
  color: var(--fc-yellow);
  letter-spacing: 0.06em;
  font-weight: 500;
}

.fc-footer-social {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.fc-footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--fc-yellow-border);
  border-radius: var(--fc-radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fc-yellow);
  transition: all 0.15s ease;
}
.fc-footer-social a:hover {
  background: var(--fc-yellow);
  color: var(--fc-black);
  border-color: var(--fc-yellow);
}
.fc-footer-social svg { width: 16px; height: 16px; }

.fc-footer-ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.fc-footer-ig-item {
  aspect-ratio: 1;
  background: var(--fc-bg-4);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 242, 0, 0.3);
}

.fc-footer-bottom {
  border-top: 1px solid var(--fc-border);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--fc-font-display);
  font-size: 10px;
  color: var(--fc-text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 10px;
}

/* --- AirMark section accent --- */
.fc-airmark-section {
  background: var(--fc-bg-2) !important;
  border-left: 4px solid var(--fc-yellow);
}

/* --- Header / nav --- */
body.fc-dark-page .site-header,
body.fc-dark-page .ast-header-break-point {
  background: var(--fc-bg) !important;
  border-bottom: 1px solid var(--fc-border);
}
body.fc-dark-page .ast-primary-header-bar,
body.fc-dark-page .main-header-bar {
  background: var(--fc-bg) !important;
}
body.fc-dark-page .main-navigation a {
  color: var(--fc-text-mute) !important;
  font-family: var(--fc-font-display) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
}
body.fc-dark-page .main-navigation a:hover {
  color: var(--fc-yellow) !important;
}

/* --- Responsive section spacing --- */
@media (max-width: 768px) {
  :root {
    --fc-section-py: 56px;
    --fc-section-px: 20px;
  }
  .fc-stat-num { font-size: 32px !important; }
}

@media (max-width: 480px) {
  :root {
    --fc-section-py: 48px;
    --fc-section-px: 16px;
  }
}

/* ==============================================================
   INNER PAGES — shared classes
   Used on /contact, /about, /services, /careers, /projects
   ============================================================== */

/* Page hero (smaller than homepage hero) */
.fc-page-hero {
  padding: 100px 32px 60px !important;
  background: var(--fc-bg) !important;
  position: relative;
}

.fc-page-hero .fc-page-title,
.fc-page-title,
.fc-page-title .elementor-heading-title {
  font-family: var(--fc-font-display) !important;
  font-size: 48px !important;
  font-weight: 500 !important;
  letter-spacing: -0.015em !important;
  color: var(--fc-text) !important;
  line-height: 1.05 !important;
  margin: 14px 0 18px !important;
}

@media (max-width: 768px) {
  .fc-page-title,
  .fc-page-title .elementor-heading-title { font-size: 36px !important; }
}

.fc-page-hero-sub,
.fc-page-hero-sub p,
.fc-page-hero-sub .elementor-widget-container p {
  font-family: var(--fc-font-body) !important;
  font-size: 15px !important;
  color: var(--fc-text-soft) !important;
  line-height: 1.65 !important;
  max-width: 560px !important;
  margin: 0 !important;
}

/* ==============================================================
   FORMS — used on Contact + Careers pages
   ============================================================== */

.fc-form .elementor-field-group label,
.fc-form .elementor-field-group > .elementor-field-label {
  color: var(--fc-text-mute) !important;
  font-family: var(--fc-font-display) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
}

.fc-form input[type="text"],
.fc-form input[type="email"],
.fc-form input[type="tel"],
.fc-form input[type="number"],
.fc-form input[type="url"],
.fc-form input[type="date"],
.fc-form select,
.fc-form textarea,
.fc-form .elementor-field-textual {
  background: var(--fc-bg-3) !important;
  border: 1px solid var(--fc-border-strong) !important;
  border-radius: var(--fc-radius-sm) !important;
  color: var(--fc-text) !important;
  padding: 12px 14px !important;
  font-family: var(--fc-font-body) !important;
  font-size: 14px !important;
  width: 100% !important;
  transition: border-color 0.15s ease;
}

.fc-form input[type="text"]:focus,
.fc-form input[type="email"]:focus,
.fc-form input[type="tel"]:focus,
.fc-form select:focus,
.fc-form textarea:focus,
.fc-form .elementor-field-textual:focus {
  outline: none !important;
  border-color: var(--fc-yellow) !important;
  box-shadow: 0 0 0 3px rgba(255, 242, 0, 0.1) !important;
}

.fc-form input::placeholder,
.fc-form textarea::placeholder {
  color: var(--fc-text-faint) !important;
}

.fc-form textarea {
  min-height: 140px !important;
  resize: vertical;
}

/* File upload field */
.fc-form input[type="file"],
.fc-form .elementor-field-type-upload input[type="file"] {
  background: var(--fc-bg-3) !important;
  border: 1px dashed var(--fc-border-strong) !important;
  border-radius: var(--fc-radius-sm) !important;
  color: var(--fc-text-soft) !important;
  padding: 16px 14px !important;
  font-family: var(--fc-font-body) !important;
  font-size: 13px !important;
  width: 100% !important;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.fc-form input[type="file"]:hover {
  border-color: var(--fc-yellow) !important;
}

.fc-form input[type="file"]::file-selector-button,
.fc-form input[type="file"]::-webkit-file-upload-button {
  background: var(--fc-bg-4) !important;
  color: var(--fc-yellow) !important;
  border: 1px solid var(--fc-yellow-border) !important;
  border-radius: 2px !important;
  padding: 7px 14px !important;
  font-family: var(--fc-font-display) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  margin-right: 12px !important;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.fc-form input[type="file"]::file-selector-button:hover,
.fc-form input[type="file"]::-webkit-file-upload-button:hover {
  background: var(--fc-yellow) !important;
  color: var(--fc-black) !important;
}

/* Upload field help text */
.fc-form .elementor-field-type-upload .elementor-field-label + small,
.fc-form .fc-upload-help {
  display: block !important;
  margin-top: 6px !important;
  font-size: 11px !important;
  color: var(--fc-text-faint) !important;
  font-family: var(--fc-font-body) !important;
  font-style: italic;
}

.fc-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23fff200' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 36px !important;
}

.fc-form .elementor-button[type="submit"],
.fc-form button[type="submit"] {
  background: var(--fc-yellow) !important;
  background-image: none !important;
  color: var(--fc-black) !important;
  border: none !important;
  border-radius: var(--fc-radius-sm) !important;
  padding: 14px 28px !important;
  font-family: var(--fc-font-display) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.03em !important;
  text-transform: none !important;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.fc-form .elementor-button[type="submit"]:hover,
.fc-form button[type="submit"]:hover {
  filter: brightness(1.1);
}

.fc-form .elementor-form-fields-wrapper {
  gap: 18px !important;
}

.fc-form .elementor-message {
  font-family: var(--fc-font-display) !important;
  font-size: 13px !important;
  padding: 12px 16px !important;
  border-radius: var(--fc-radius-sm) !important;
}

.fc-form .elementor-message-success {
  background: rgba(40, 200, 64, 0.1) !important;
  color: #28c840 !important;
  border: 1px solid rgba(40, 200, 64, 0.3) !important;
}

.fc-form .elementor-message-danger {
  background: rgba(255, 95, 87, 0.1) !important;
  color: #ff5f57 !important;
  border: 1px solid rgba(255, 95, 87, 0.3) !important;
}

/* ==============================================================
   CONTACT PAGE — specific layout
   ============================================================== */

.fc-contact-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr !important;
  gap: 40px !important;
  align-items: start !important;
}

@media (max-width: 768px) {
  .fc-contact-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

.fc-contact-info-card {
  background: var(--fc-bg-3);
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius-md);
  padding: 8px 24px;
}

.fc-contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--fc-border);
}

.fc-contact-row:last-child { border-bottom: none; }

.fc-contact-row-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--fc-yellow-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fc-yellow);
  flex-shrink: 0;
}

.fc-contact-row-icon svg {
  width: 16px;
  height: 16px;
}

.fc-contact-row-label {
  font-family: var(--fc-font-display);
  font-size: 10px;
  color: var(--fc-text-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 500;
}

.fc-contact-row-value {
  font-family: var(--fc-font-body);
  font-size: 14px;
  color: var(--fc-text);
  line-height: 1.5;
}

.fc-contact-row-value a {
  color: var(--fc-text);
  text-decoration: none;
  border-bottom: 1px solid var(--fc-border-strong);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.fc-contact-row-value a:hover {
  color: var(--fc-yellow);
  border-color: var(--fc-yellow);
}

.fc-form-card {
  background: var(--fc-bg-2);
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-radius-md);
  padding: 36px 32px;
}

@media (max-width: 768px) {
  .fc-form-card { padding: 28px 20px; }
}
