/*
Theme Name: Events Aria
Theme URI: https://eventsaria.com
Author: Events Aria Team
Author URI: https://eventsaria.com
Description: Die ultimative All-in-One Event-Plattform fur WordPress. 41 integrierte Module, Anbieter-Verzeichnis, Marketplace, Dashboard, KI-Tools und mehr. Schwarz-Gold Premium Design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eventsaria
Domain Path: /languages
Tags: event-platform, marketplace, black-gold, responsive, seo, custom-post-types
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
*/

/* ===== THEME HEADER - DO NOT DELETE ABOVE ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== ROOT VARIABLES ===== */
:root {
  --gold: #C9A962;
  --gold-light: #E8D5A3;
  --gold-dark: #8B7340;
  --gold-glow: rgba(201,169,98,0.3);
  --black: #0A0A0A;
  --black-light: #111111;
  --black-card: #151515;
  --black-hover: #1A1A1A;
  --white: #F5F0E8;
  --white-dim: #A09888;
  --white-muted: #6B6558;
  --red: #C44B4B;
  --green: #4BC46B;
  --max-width: 1440px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--white); }

p { color: var(--white-dim); }

::selection { background: var(--gold-glow); color: var(--white); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== NAVIGATION ===== */
.ea-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,169,98,0.1);
}

.ea-navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ea-navbar-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-decoration: none;
}
.ea-navbar-logo span { color: var(--white); }

.ea-navbar-menu {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.ea-navbar-menu a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.ea-navbar-menu a:hover,
.ea-navbar-menu a.active { color: var(--gold); }

.ea-navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.ea-navbar-menu a:hover::after,
.ea-navbar-menu a.active::after { width: 100%; }

.ea-navbar-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ea-navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,98,0.3);
  color: var(--black) !important;
}

.ea-mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  padding: 8px;
}

/* ===== HERO SECTION ===== */
.ea-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.ea-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}

.ea-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.6) 60%, var(--black) 100%);
}

.ea-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 120px 24px 60px;
}

.ea-hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(201,169,98,0.3);
  border-radius: 100px;
}

.ea-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}

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

.ea-hero-subtitle {
  font-size: 17px;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* Search Bar */
.ea-search-bar {
  display: flex;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,169,98,0.2);
  border-radius: 8px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.ea-search-field {
  flex: 1;
  padding: 16px 20px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(201,169,98,0.1);
  color: var(--white);
  font-size: 14px;
  outline: none;
  font-family: var(--font-body);
}

.ea-search-field::placeholder { color: var(--white-muted); }

.ea-search-field:focus { background: rgba(201,169,98,0.03); }

.ea-search-btn {
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ea-search-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 20px rgba(201,169,98,0.3);
}

/* Gold Dust Particles */
.ea-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.ea-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ===== SECTIONS ===== */
.ea-section {
  padding: 100px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.ea-section-alt {
  background: var(--black-light);
  border-radius: 16px;
  margin: 0 20px 100px;
  max-width: calc(var(--max-width) - 40px);
  padding: 80px 40px;
}

.ea-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.ea-section-title .gold { color: var(--gold); }

.ea-section-subtitle {
  font-size: 16px;
  color: var(--white-dim);
  margin-bottom: 56px;
  max-width: 600px;
  line-height: 1.6;
}

/* ===== BUTTONS ===== */
.ea-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-body);
}

.ea-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,98,0.3);
  color: var(--black);
}

.ea-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-body);
}

.ea-btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* ===== CATEGORY CARDS ===== */
.ea-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.ea-cat-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
}

.ea-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) grayscale(20%);
  transition: all 0.4s ease;
}

.ea-cat-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.45) grayscale(0%);
}

.ea-cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.92) 100%);
}

.ea-cat-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 5;
}

.ea-cat-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.ea-cat-card-count {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Gold border effect on hover */
.ea-cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  z-index: 6;
  transition: border-color 0.4s ease;
  pointer-events: none;
}

.ea-cat-card:hover::before {
  border-color: var(--gold);
}

/* ===== MODULE CARDS ===== */
.ea-mod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  overflow: hidden;
}

.ea-mod-card {
  background: var(--black-card);
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.ea-mod-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ea-mod-card:hover {
  background: var(--black-hover);
  transform: translateY(-2px);
}

.ea-mod-card:hover::before { opacity: 1; }

.ea-mod-card:hover .ea-mod-icon {
  color: var(--gold);
  transform: scale(1.1);
}

.ea-mod-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ea-mod-icon {
  color: var(--white-muted);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.ea-mod-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.ea-mod-items {
  font-size: 12px;
  line-height: 1.7;
  color: var(--white-muted);
}

/* ===== PROVIDER CARDS ===== */
.ea-prov-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ea-prov-card:hover {
  border-color: rgba(201,169,98,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.ea-prov-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ea-prov-card:hover::before { opacity: 1; }

.ea-prov-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.ea-prov-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  color: var(--black);
  font-weight: 600;
  font-family: var(--font-display);
}

.ea-prov-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
  font-family: var(--font-display);
}

.ea-prov-info span {
  font-size: 12px;
  color: var(--gold);
}

.ea-prov-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--white-dim);
  margin-bottom: 12px;
}

.ea-prov-desc {
  font-size: 13px;
  color: var(--white-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.ea-prov-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ea-prov-tag {
  padding: 4px 12px;
  background: rgba(201,169,98,0.08);
  border: 1px solid rgba(201,169,98,0.12);
  border-radius: 100px;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* ===== FEATURE CARDS ===== */
.ea-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.ea-feature-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
}

.ea-feature-card:hover {
  border-color: rgba(201,169,98,0.15);
  transform: translateY(-2px);
}

.ea-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(201,169,98,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.ea-feature-card:hover .ea-feature-icon {
  background: rgba(201,169,98,0.2);
  box-shadow: 0 0 20px rgba(201,169,98,0.15);
}

.ea-feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.ea-feature-desc {
  font-size: 13px;
  color: var(--white-muted);
  line-height: 1.7;
}

/* ===== TESTIMONIAL CARDS ===== */
.ea-testi-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 32px;
  position: relative;
}

.ea-testi-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(201,169,98,0.1);
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

.ea-testi-text {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.ea-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ea-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  font-family: var(--font-display);
}

.ea-testi-name {
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
}

.ea-testi-role {
  font-size: 12px;
  color: var(--white-muted);
}

/* ===== STEPS ===== */
.ea-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.ea-step-card {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.ea-step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50px;
  right: -16px;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), transparent);
}

.ea-step-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: rgba(201,169,98,0.1);
  line-height: 1;
  margin-bottom: 16px;
}

.ea-step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.ea-step-desc {
  font-size: 13px;
  color: var(--white-dim);
  line-height: 1.6;
}

/* ===== STATS ===== */
.ea-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}

.ea-stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.ea-stat-label {
  font-size: 12px;
  color: var(--white-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ===== TABS ===== */
.ea-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 4px;
  width: fit-content;
  flex-wrap: wrap;
}

.ea-tab {
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--white-dim);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  white-space: nowrap;
}

.ea-tab.active {
  background: var(--gold);
  color: var(--black);
}

.ea-tab:hover:not(.active) {
  color: var(--white);
}

/* ===== MARKETPLACE ===== */
.ea-mkt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.ea-mkt-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ea-mkt-card:hover {
  border-color: rgba(201,169,98,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.ea-mkt-img {
  width: 100%;
  height: 180px;
  background: var(--black-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.ea-mkt-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.8) 100%);
}

.ea-mkt-info { padding: 20px; }

.ea-mkt-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}

.ea-mkt-title {
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  font-size: 14px;
}

.ea-mkt-seller {
  font-size: 12px;
  color: var(--white-muted);
}

/* ===== DASHBOARD ===== */
.ea-dashboard {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 72px);
  margin-top: 72px;
}

.ea-dashboard-sidebar {
  background: var(--black-light);
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 32px 0;
}

.ea-sidebar-section {
  padding: 0 20px;
  margin-bottom: 24px;
}

.ea-sidebar-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 12px;
  padding: 0 12px;
}

.ea-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--white-dim);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.ea-sidebar-item:hover,
.ea-sidebar-item.active {
  background: rgba(201,169,98,0.1);
  color: var(--gold);
}

.ea-dashboard-main {
  padding: 40px;
  overflow-y: auto;
}

.ea-stat-card-sm {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

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

.ea-stat-value-sm {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.ea-stat-label-sm {
  font-size: 11px;
  color: var(--white-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== DATA TABLE ===== */
.ea-table {
  width: 100%;
  border-collapse: collapse;
}

.ea-table th {
  text-align: left;
  padding: 14px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-muted);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ea-table td {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--white-dim);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ea-table tr:hover td { background: rgba(255,255,255,0.02); }

.ea-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
}

.ea-status-confirmed { background: rgba(75,196,107,0.1); color: var(--green); }
.ea-status-pending { background: rgba(201,169,98,0.1); color: var(--gold); }
.ea-status-planning { background: rgba(0,112,255,0.1); color: #4B8BF4; }

/* ===== FORMS ===== */
.ea-form-group { margin-bottom: 20px; }

.ea-form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 8px;
}

.ea-form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.ea-form-input:focus {
  border-color: var(--gold);
  background: rgba(201,169,98,0.03);
  box-shadow: 0 0 0 3px rgba(201,169,98,0.1);
}

.ea-form-input::placeholder { color: var(--white-muted); }

textarea.ea-form-input { min-height: 120px; resize: vertical; }

select.ea-form-input {
  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='%236B6558' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ===== PAGE HEADER ===== */
.ea-page-header {
  padding: 140px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ea-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,98,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(201,169,98,0.03) 0%, transparent 50%);
}

.ea-page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}

.ea-page-header h1 .gold { color: var(--gold); }

.ea-page-header p {
  font-size: 16px;
  color: var(--white-dim);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ===== CTA SECTION ===== */
.ea-cta {
  position: relative;
  padding: 120px 40px;
  text-align: center;
  overflow: hidden;
}

.ea-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(201,169,98,0.08) 0%, transparent 60%);
}

.ea-cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.ea-cta-title .gold { color: var(--gold); }

.ea-cta-desc {
  font-size: 17px;
  color: var(--white-dim);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
  position: relative;
}

/* ===== FOOTER ===== */
.ea-footer {
  background: var(--black-light);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 40px 40px;
}

.ea-footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.ea-footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.ea-footer-desc {
  font-size: 14px;
  color: var(--white-muted);
  line-height: 1.7;
  max-width: 300px;
}

.ea-footer-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.ea-footer-links { list-style: none; }

.ea-footer-links li { margin-bottom: 10px; }

.ea-footer-links a {
  font-size: 13px;
  color: var(--white-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.ea-footer-links a:hover { color: var(--gold); }

.ea-footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.ea-footer-copy {
  font-size: 12px;
  color: var(--white-muted);
}

/* ===== 404 PAGE ===== */
.ea-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.ea-404-num {
  font-family: var(--font-display);
  font-size: 160px;
  font-weight: 700;
  color: rgba(201,169,98,0.1);
  line-height: 1;
}

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

@keyframes eaGoldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,98,0.2); }
  50% { box-shadow: 0 0 20px 4px rgba(201,169,98,0.1); }
}

.ea-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ea-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gold shimmer effect */
.ea-shimmer {
  position: relative;
  overflow: hidden;
}

.ea-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,169,98,0.05), transparent);
  animation: eaShimmer 3s infinite;
}

@keyframes eaShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ea-navbar-menu { display: none; }
  .ea-mobile-menu-btn { display: block; }
  .ea-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ea-dashboard { grid-template-columns: 1fr; }
  .ea-dashboard-sidebar { display: none; }
  .ea-contact-grid { grid-template-columns: 1fr; }
  .ea-section { padding: 60px 24px; }
  .ea-page-header { padding: 120px 24px 40px; }
  .ea-step-card:not(:last-child)::after { display: none; }
}

@media (max-width: 640px) {
  .ea-search-bar { flex-direction: column; }
  .ea-search-field { border-right: none; border-bottom: 1px solid rgba(201,169,98,0.1); }
  .ea-footer-grid { grid-template-columns: 1fr; }
  .ea-footer-bottom { flex-direction: column; text-align: center; }
  .ea-stat-grid { grid-template-columns: 1fr 1fr; }
  .ea-hero { min-height: auto; }
  .ea-hero-content { padding: 140px 20px 60px; }
  .ea-404-num { font-size: 100px; }
  .ea-section-alt { margin: 0 10px 60px; padding: 40px 20px; }
  .ea-navbar-inner { padding: 0 20px; }
  .ea-cta { padding: 80px 20px; }
}

/* ===== WORDPRESS DEFAULTS OVERRIDE ===== */
.wp-block { max-width: 100%; }

.aligncenter { display: block; margin: 0 auto; }

.gallery-item { display: inline-block; margin: 0 4px 8px; }

/* Screen reader text */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* WordPress blocks */
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--black) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,98,0.3);
}
