/*
Theme Name: Falcon Engineering Systems
Theme URI: https://falconengineeringsystems.com
Author: Falcon Engineering Systems
Description: Dark tech theme for Falcon Engineering Systems - Advanced Technology Solutions for Critical Infrastructure
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: falcon-engineering
*/

/* =============================================
   DESIGN TOKENS — Dark Tech Theme
   ============================================= */
:root {
  --bg-primary: #020617;
  --bg-secondary: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.4);
  --border: rgba(30, 41, 59, 0.8);
  --border-hover: rgba(6, 182, 212, 0.3);
  --cyan: #06b6d4;
  --cyan-light: #22d3ee;
  --cyan-dark: #0891b2;
  --cyan-bg: rgba(8, 51, 68, 0.3);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --shadow-cyan: 0 0 20px rgba(8, 145, 178, 0.3);
  --shadow-cyan-hover: 0 0 30px rgba(8, 145, 178, 0.5);
  --radius: 0.75rem;
  --radius-sm: 0.125rem;
  --max-width: 1280px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 4vw, 3.5rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }

p { color: var(--text-secondary); line-height: 1.7; }

.label-mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
  margin-bottom: 1rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cyan-dark);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-cyan);
}

.btn-primary:hover {
  background: var(--cyan);
  box-shadow: var(--shadow-cyan-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--cyan);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(6, 182, 212, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--cyan-bg);
  border-color: var(--cyan);
  color: var(--cyan-light);
}

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 40px -10px rgba(6, 182, 212, 0.15);
  transform: translateY(-4px);
}

/* =============================================
   GRID PATTERNS & BACKGROUNDS
   ============================================= */
.grid-pattern {
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}

.dot-pattern {
  background-image: radial-gradient(circle at 2px 2px, rgba(14, 165, 233, 0.5) 1px, transparent 0);
  background-size: 32px 32px;
}

/* =============================================
   SECTION SPACING
   ============================================= */
.section { padding: 5rem 0; }
.section-lg { padding: 8rem 0; }

@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .section-lg { padding: 5rem 0; }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-alt {
  background: rgba(15, 23, 42, 0.3);
}

/* =============================================
   GRID LAYOUTS
   ============================================= */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* =============================================
   NAVBAR
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.5s ease;
  height: 80px;
}

.site-header.scrolled {
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 41, 59, 0.5);
  box-shadow: 0 4px 30px rgba(6, 182, 212, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(30, 41, 59, 0.5);
}

.nav-links a.current-menu-item {
  color: var(--cyan);
  background: var(--cyan-bg);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.lang-switcher:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.current-menu-item {
  color: var(--cyan);
  background: var(--cyan-bg);
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand img { height: 36px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; max-width: 300px; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a:hover { color: var(--cyan); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2,6,23,0.5) 0%, rgba(2,6,23,0.8) 60%, #020617 100%);
}

.hero-overlay-lr {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #020617 0%, transparent 40%, rgba(2,6,23,0.4) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(14,165,233,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.15) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 6rem 0 5rem;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-logo-wrap { display: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: var(--cyan-bg);
  border: 1px solid rgba(6, 182, 212, 0.2);
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero h1 { margin-bottom: 1.5rem; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--cyan-light);
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 560px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-wrap img {
  max-width: 420px;
  width: 100%;
  opacity: 0.9;
  filter: drop-shadow(0 0 30px rgba(6, 182, 212, 0.2));
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-indicator-inner {
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--cyan);
  border-radius: 2px;
  animation: pulse 2s infinite;
}

/* =============================================
   SOLUTIONS CARDS
   ============================================= */
.solution-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: all 0.5s ease;
  display: block;
}

.solution-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 40px -10px rgba(6, 182, 212, 0.2);
  transform: translateY(-4px);
}

.solution-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  transition: opacity 0.5s ease;
}

.solution-card:hover .solution-card-bg { opacity: 0.25; }

.solution-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-card-content { position: relative; z-index: 1; }

.solution-icon {
  width: 3rem;
  height: 3rem;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}

.solution-card h3 { margin-bottom: 1rem; font-size: 1.3rem; }
.solution-card p { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.9rem; line-height: 1.7; }

.learn-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan);
  font-weight: 500;
  font-size: 0.85rem;
  transition: gap 0.3s ease;
}

.solution-card:hover .learn-more { gap: 0.75rem; }

/* =============================================
   INDUSTRIES GRID
   ============================================= */
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
  gap: 0.75rem;
}

.industry-card:hover {
  border-color: var(--border-hover);
  background: rgba(15, 23, 42, 0.6);
}

.industry-card svg {
  width: 2rem;
  height: 2rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.industry-card:hover svg { color: var(--cyan); }

.industry-card span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.industry-card:hover span { color: var(--text-primary); }

/* =============================================
   STATS
   ============================================= */
.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--bg-secondary), rgba(15,23,42,0.5));
  border: 1px solid var(--border);
  padding: 4rem;
  text-align: center;
}

.cta-banner-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
}

.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { color: var(--text-secondary); margin-bottom: 2rem; font-size: 1.1rem; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--bg-primary);
}

.page-hero .label-mono { margin-bottom: 1rem; }
.page-hero h1 { margin-bottom: 1.5rem; }
.page-hero p { font-size: 1.1rem; max-width: 600px; }

/* =============================================
   PARTNER CARDS
   ============================================= */
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
  gap: 0.5rem;
  aspect-ratio: 2/1;
}

.partner-card:hover {
  border-color: var(--border-hover);
  background: rgba(15,23,42,0.6);
}

.partner-card span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.partner-card:hover span { color: var(--text-primary); }

/* =============================================
   PROJECT CARDS
   ============================================= */
.project-card {
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.5s ease;
}

.project-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 40px -10px rgba(6, 182, 212, 0.15);
  transform: translateY(-4px);
}

.project-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img img { transform: scale(1.1); }

.project-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-secondary), rgba(15,23,42,0.5), transparent);
}

.project-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(8,51,68,0.85);
  border: 1px solid rgba(6,182,212,0.3);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan);
  backdrop-filter: blur(4px);
}

.project-body { padding: 1.5rem; }
.project-body h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.project-body p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.6; }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.contact-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--cyan-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg { width: 1.2rem; height: 1.2rem; color: var(--cyan); }
.contact-item-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-item-value { font-size: 0.9rem; color: var(--text-primary); }

.wpcf7-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; color: var(--text-secondary); text-transform: uppercase; }

.form-group input,
.form-group textarea,
.form-group select,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group textarea,
.wpcf7-form textarea { min-height: 140px; resize: vertical; }

.wpcf7-submit,
.form-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--cyan-dark);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-cyan);
}

.wpcf7-submit:hover,
.form-submit-btn:hover {
  background: var(--cyan);
  box-shadow: var(--shadow-cyan-hover);
}

/* =============================================
   GLOBAL REACH SECTION
   ============================================= */
.global-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .global-section { grid-template-columns: 1fr; }
  .globe-wrap { display: none; }
}

.globe-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.globe-pulse {
  position: relative;
  width: 16rem;
  height: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-dot {
  width: 1rem;
  height: 1rem;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.8);
  animation: pulse 2s infinite;
}

/* =============================================
   MARQUEE (Partners)
   ============================================= */
.marquee-track {
  display: flex;
  gap: 1rem;
  animation: marquee 30s linear infinite;
  width: max-content;
  margin-bottom: 1rem;
}

.marquee-track-reverse {
  animation: marquee-reverse 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: border-color 0.3s ease;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.marquee-item:hover { border-color: var(--border-hover); color: var(--text-primary); }

.marquee-overflow { overflow: hidden; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.value-card:hover { border-color: var(--border-hover); }

.value-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--cyan-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.value-icon svg { width: 1.25rem; height: 1.25rem; color: var(--cyan); }
.value-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.value-card p { font-size: 0.85rem; color: var(--text-muted); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* =============================================
   POLYLANG LANGUAGE SWITCHER
   ============================================= */
.pll-parent-menu-item a { display: flex; align-items: center; gap: 0.4rem; }
.lang-flag { font-size: 1rem; }

/* =============================================
   RESPONSIVE UTILITIES
   ============================================= */
@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .cta-banner { padding: 2rem 1.5rem; }
}

/* =============================================
   WORDPRESS CORE OVERRIDES
   ============================================= */
.wp-block-image { max-width: 100%; }
.aligncenter { margin: 0 auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
