/*
Theme Name: Europa Nigeria
Theme URI: https://europanigeria.com
Author: Europa Nigeria
Author URI: https://europanigeria.com
Description: Official brand theme for Europa Nigeria — Nigeria's premier wholesale apparel distributor. Built for Elementor. Deep Navy & Gold. Authoritative. Premium. Proudly Nigerian.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
License URI: #
Text Domain: europa-nigeria
Tags: business, e-commerce, elementor, custom-colors, custom-logo, full-width-template, threaded-comments, translation-ready
*/

/* ============================================================
   DESIGN TOKENS — EUROPA NIGERIA BRAND
   ============================================================ */
:root {
  /* Core Palette */
  --deep-navy:    #0A1628;
  --navy-mid:     #112240;
  --steel-navy:   #1A3358;
  --europa-gold:  #C9A84C;
  --light-gold:   #E4C46E;
  --gold-pale:    #F5E6B8;
  --ivory-white:  #F8F6F0;
  --grey:         #8A9BB5;
  --white:        #FFFFFF;

  /* Semantic Aliases */
  --bg-primary:       var(--deep-navy);
  --bg-secondary:     var(--navy-mid);
  --bg-card:          var(--steel-navy);
  --accent:           var(--europa-gold);
  --accent-hover:     var(--light-gold);
  --text-primary:     var(--white);
  --text-secondary:   var(--grey);
  --text-accent:      var(--europa-gold);
  --border-accent:    var(--europa-gold);

  /* Typography Scale */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-label:   'Barlow Condensed', sans-serif;

  --fs-h1:    clamp(52px, 8vw, 96px);
  --fs-h2:    clamp(36px, 5vw, 64px);
  --fs-h3:    22px;
  --fs-body:  16px;
  --fs-label: 11px;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --container:   1240px;
  --gutter:      clamp(20px, 4vw, 48px);

  /* Effects */
  --gold-glow:  0 0 40px rgba(201, 168, 76, 0.18);
  --card-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, .h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  letter-spacing: 4px;
  line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  letter-spacing: 3px;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
}

h3, .h3 {
  font-family: var(--font-label);
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--europa-gold);
}

h4, .h4 {
  font-family: var(--font-label);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

p { margin-bottom: 1.2em; color: var(--text-primary); }

.label, .eyebrow {
  font-family: var(--font-label);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--grey);
}

.text-gold { color: var(--europa-gold); }
.text-grey { color: var(--grey); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-pad); }
.section--dark   { background-color: var(--bg-primary); }
.section--mid    { background-color: var(--bg-secondary); }
.section--card   { background-color: var(--bg-card); }
.section--ivory  { background-color: var(--ivory-white); color: var(--deep-navy); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ============================================================
   GOLD DIVIDER (Brand element)
   ============================================================ */
.gold-divider {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--europa-gold), transparent);
  border: none;
  margin: 0;
}

.gold-divider--left {
  background: linear-gradient(90deg, var(--europa-gold), transparent);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--europa-gold);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--europa-gold);
  color: var(--deep-navy);
}

.btn-primary:hover {
  background: var(--light-gold);
  color: var(--deep-navy);
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--europa-gold);
  border: 1.5px solid var(--europa-gold);
}

.btn-outline:hover {
  background: var(--europa-gold);
  color: var(--deep-navy);
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-ghost:hover {
  border-color: var(--europa-gold);
  color: var(--europa-gold);
}

/* ============================================================
   SITE HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: all var(--transition);
}

#site-header.scrolled {
  background: rgba(10, 22, 40, 0.98);
  border-bottom-color: rgba(201, 168, 76, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-wordmark {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 8px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 10px;
  color: var(--europa-gold);
  text-transform: uppercase;
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid;
  border-image: linear-gradient(90deg, var(--europa-gold), transparent) 1;
}

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.primary-nav a {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--europa-gold);
  transition: width var(--transition);
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--europa-gold);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--europa-gold);
  transition: all var(--transition);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(26, 51, 88, 0.8) 0%, transparent 60%),
    linear-gradient(135deg, var(--deep-navy) 0%, var(--navy-mid) 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text .eyebrow {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.8s ease forwards;
}

.hero-text .eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--europa-gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  letter-spacing: 4px;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-title span { color: var(--europa-gold); }

.hero-subtitle {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey);
  max-width: 520px;
  margin-bottom: 44px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}

.hero-compass {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.2s 0.6s ease both;
}

.hero-compass svg {
  width: min(460px, 90%);
  height: auto;
  filter: drop-shadow(0 0 60px rgba(201, 168, 76, 0.2));
  animation: rotateCompass 60s linear infinite;
}

.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  gap: 48px;
  animation: fadeUp 0.8s 0.8s ease both;
}

.stat-item { display: flex; flex-direction: column; gap: 4px; }

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--europa-gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 40px 36px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--europa-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow), var(--gold-glow);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--europa-gold);
}

/* Category Cards */
.category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.category-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--steel-navy), var(--navy-mid));
  transition: transform var(--transition);
}

.category-card:hover .category-card-bg {
  transform: scale(1.05);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.3) 50%, transparent 100%);
}

.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
}

.category-card-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(
    45deg,
    var(--europa-gold),
    var(--europa-gold) 1px,
    transparent 1px,
    transparent 12px
  );
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  margin-bottom: 60px;
}

.section-header.centered { text-align: center; }

.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--europa-gold);
  font-size: 10px;
  letter-spacing: 5px;
}

.section-header .eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--europa-gold);
}

.section-header.centered .eyebrow::before {
  display: none;
}

.section-header p {
  font-size: 17px;
  color: var(--grey);
  max-width: 580px;
  line-height: 1.8;
}

.section-header.centered p { margin-inline: auto; }

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.marquee-bar {
  background: var(--europa-gold);
  overflow: hidden;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-inline: 40px;
  white-space: nowrap;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--deep-navy);
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--deep-navy);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--steel-navy);
  border: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
  overflow: hidden;
}

.about-visual-accent {
  position: relative;
  width: 160px;
  height: 160px;
  background: var(--navy-mid);
  border: 1px solid rgba(201, 168, 76, 0.3);
  margin-top: 20px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--europa-gold);
}

.value-item h4 { margin-bottom: 4px; }
.value-item p  { font-size: 14px; color: var(--grey); margin: 0; }

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
    var(--navy-mid);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.partner-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.benefit-item {
  background: var(--bg-secondary);
  padding: 48px 36px;
  position: relative;
  transition: background var(--transition);
}

.benefit-item:hover {
  background: var(--steel-navy);
}

.benefit-number {
  font-family: var(--font-display);
  font-size: 56px;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--europa-gold), rgba(201,168,76,0.2), var(--europa-gold));
}

.process-step {
  padding: 24px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--europa-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--europa-gold);
  background: var(--bg-primary);
  position: relative;
  z-index: 1;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  margin-bottom: 32px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--europa-gold);
}

.contact-info-item h4 { margin-bottom: 6px; font-size: 11px; letter-spacing: 3px; }
.contact-info-item p  { margin: 0; color: var(--white); font-size: 15px; }

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.hub-item {
  background: var(--steel-navy);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
}

.hub-item:hover {
  border-color: var(--europa-gold);
  transform: translateY(-2px);
}

.hub-city {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 4px;
}

.hub-state {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--europa-gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #060E1A;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-main {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.8;
  margin-top: 24px;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--europa-gold);
  margin-bottom: 24px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col ul li a {
  font-size: 14px;
  color: var(--grey);
  text-decoration: none;
  transition: color var(--transition);
  font-family: var(--font-body);
}

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

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin: 0;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--deep-navy);
  padding: 100px var(--gutter) 40px;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.is-open { display: flex; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--europa-gold); }

/* ============================================================
   PAGE BANNER (Inner pages)
   ============================================================ */
.page-banner {
  padding-top: 160px;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 60% 100% at 80% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    var(--navy-mid);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-banner .container { position: relative; z-index: 1; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes rotateCompass {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.3); }
  50%       { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}

/* ============================================================
   ELEMENTOR COMPATIBILITY
   ============================================================ */
.elementor-section { position: relative; }
.elementor-widget-wrap { position: relative; }

/* Override Elementor defaults with brand tokens */
.elementor-heading-title { font-family: var(--font-display) !important; letter-spacing: 3px !important; }
.elementor-widget-text-editor p { font-family: var(--font-body) !important; font-weight: 300 !important; color: var(--grey) !important; }

/* Elementor Color Globals */
--e-global-color-primary:   #C9A84C;
--e-global-color-secondary: #0A1628;
--e-global-color-text:      #FFFFFF;
--e-global-color-accent:    #E4C46E;

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-compass { display: none; }
  .about-layout { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .primary-nav { display: none; }
  .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .partner-benefits { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hub-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */
.wp-block-image img    { max-width: 100%; }
.screen-reader-text    { position: absolute; left: -9999px; }
.skip-link             { position: absolute; top: -40px; left: 0; background: var(--europa-gold); color: var(--deep-navy); padding: 8px 16px; z-index: 9999; font-family: var(--font-label); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
.skip-link:focus       { top: 0; }
.alignwide             { max-width: calc(var(--container) + 120px); margin-inline: auto; }
.alignfull             { width: 100%; max-width: none; }
.wp-caption-text       { font-family: var(--font-label); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--grey); margin-top: 8px; }
