/*
Theme Name: ECC 2026
Theme URI: https://ecc2026.na
Author: Effective Communicators Conference
Author URI: https://ecc2026.na
Description: Official theme for the Effective Communicators Conference 2026 — a premier professional event in Namibia enhancing the capacity of government, SOE, and private sector communicators.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ecc2026
Tags: conference, events, professional, namibia, communications, blue, modern, one-page
*/

/* =============================================
   ECC 2026 — Brand Variables
   ============================================= */
:root {
  --ecc-blue:      #3A53A4;
  --ecc-dark-1:    #1a2a5e;
  --ecc-dark-2:    #0d1a40;
  --ecc-red:       #EE3534;
  --ecc-green:     #31B24A;
  --ecc-yellow:    #FFCB03;
  --ecc-bg:        #f7f8fc;
  --ecc-surface:   #ffffff;
  --ecc-border:    #e2e6f0;
  --ecc-text:      #0d1a40;
  --ecc-muted:     #64748b;
  --ecc-radius:    0.75rem;
  --ecc-shadow:    0 1px 3px rgba(0,0,0,0.07), 0 4px 16px rgba(58,83,164,0.07);
  --ecc-shadow-lg: 0 8px 32px rgba(58,83,164,0.14);
  --container:     1200px;
  --font-main:     'Saira', 'Segoe UI', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--ecc-bg);
  color: var(--ecc-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--ecc-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ecc-dark-1); }

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--ecc-text);
}

ul { list-style: none; }

/* =============================================
   Preloader
   ============================================= */
#ecc-preloader {
  position: fixed;
  inset: 0;
  background: var(--ecc-dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#ecc-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#ecc-preloader-lottie {
  width: 200px;
  height: 200px;
}

/* =============================================
   Layout Utilities
   ============================================= */
.ecc-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ecc-section { padding: 5rem 0; }
.ecc-section--sm { padding: 3rem 0; }
.ecc-section--dark { background: var(--ecc-dark-2); }
.ecc-section--navy { background: var(--ecc-dark-1); }
.ecc-section--blue { background: var(--ecc-blue); }
.ecc-section--light { background: var(--ecc-bg); }
.ecc-section--white { background: var(--ecc-surface); }
.ecc-section--accent { background: #eef1fb; }

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

.ecc-flex { display: flex; align-items: center; }
.ecc-flex--between { justify-content: space-between; }
.ecc-flex--center { justify-content: center; }
.ecc-flex--gap { gap: 1rem; }

.ecc-text-center { text-align: center; }
.ecc-text-white { color: #fff; }
.ecc-text-muted { color: var(--ecc-muted); }
.ecc-text-blue { color: var(--ecc-blue); }
.ecc-text-red { color: var(--ecc-red); }
.ecc-text-green { color: var(--ecc-green); }

.ecc-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.ecc-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.ecc-section-lead {
  font-size: 1.125rem;
  color: var(--ecc-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* =============================================
   Buttons
   ============================================= */
.ecc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.ecc-btn--primary {
  background: var(--ecc-red);
  color: #fff;
  border-color: var(--ecc-red);
}
.ecc-btn--primary:hover {
  background: #c82020;
  border-color: #c82020;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(238,53,52,0.35);
}

.ecc-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.ecc-btn--outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.ecc-btn--yellow {
  background: var(--ecc-yellow);
  color: var(--ecc-dark-2);
  border-color: var(--ecc-yellow);
}
.ecc-btn--yellow:hover {
  background: #e6b800;
  color: var(--ecc-dark-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,203,3,0.4);
}

.ecc-btn--blue {
  background: var(--ecc-blue);
  color: #fff;
  border-color: var(--ecc-blue);
}
.ecc-btn--blue:hover {
  background: var(--ecc-dark-1);
  border-color: var(--ecc-dark-1);
  color: #fff;
  transform: translateY(-2px);
}

.ecc-btn--sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.ecc-btn--lg { padding: 1.125rem 2.5rem; font-size: 1.125rem; }

/* =============================================
   Navigation
   ============================================= */
.ecc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ecc-border);
  transition: box-shadow 0.3s;
}

.ecc-nav.scrolled { box-shadow: var(--ecc-shadow-lg); }

.ecc-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.ecc-nav__logo img { height: 48px; width: auto; }
.ecc-nav__logo { display: flex; align-items: center; }

.ecc-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ecc-nav__links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ecc-muted);
  transition: color 0.2s;
}
.ecc-nav__links a:hover,
.ecc-nav__links a.current-menu-item { color: var(--ecc-blue); }

.ecc-nav__cta { margin-left: 1rem; }

.ecc-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.ecc-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ecc-text);
  border-radius: 2px;
  transition: all 0.3s;
}

.ecc-nav__mobile {
  display: none;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--ecc-border);
  background: #fff;
  flex-direction: column;
  gap: 1rem;
}
.ecc-nav__mobile a {
  font-weight: 500;
  color: var(--ecc-text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ecc-border);
}
.ecc-nav__mobile.open { display: flex; }

/* =============================================
   Hero Section
   ============================================= */
.ecc-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ecc-dark-2) 0%, var(--ecc-dark-1) 50%, rgba(58,83,164,0.85) 100%);
  padding-top: 80px;
}

.ecc-hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(238,53,52,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ecc-hero::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,203,3,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ecc-hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.ecc-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ecc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
}

.ecc-hero__title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.ecc-hero__title .highlight {
  background: linear-gradient(90deg, var(--ecc-yellow), var(--ecc-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ecc-hero__lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.ecc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* =============================================
   Section: Purpose
   ============================================= */
.ecc-purpose { background: var(--ecc-surface); }

.ecc-purpose__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ecc-purpose__visual {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--ecc-blue), var(--ecc-dark-2));
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--ecc-shadow-lg);
}

.ecc-purpose__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.15) 1px, transparent 0);
  background-size: 32px 32px;
}

.ecc-purpose__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--ecc-blue);
  margin-top: 1.5rem;
}
.ecc-purpose__link:hover { gap: 0.75rem; color: var(--ecc-dark-1); }

/* =============================================
   Section: Why Attend — Cards
   ============================================= */
.ecc-attend { background: #eef1fb; }

.ecc-card {
  background: var(--ecc-surface);
  border: 1px solid var(--ecc-border);
  border-radius: var(--ecc-radius);
  padding: 2.5rem;
  box-shadow: var(--ecc-shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.ecc-card:hover {
  box-shadow: var(--ecc-shadow-lg);
  transform: translateY(-4px);
}

.ecc-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.ecc-card__icon--blue { background: var(--ecc-blue); }
.ecc-card__icon--red { background: var(--ecc-red); }
.ecc-card__icon--green { background: var(--ecc-green); }

.ecc-card__icon svg { width: 26px; height: 26px; color: #fff; }

.ecc-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.ecc-card__body { color: var(--ecc-muted); line-height: 1.7; }

/* =============================================
   Section: Themes
   ============================================= */
.ecc-themes { background: var(--ecc-surface); }

.ecc-theme-card {
  background: var(--ecc-surface);
  border: 1px solid var(--ecc-border);
  border-radius: var(--ecc-radius);
  padding: 2rem;
  box-shadow: var(--ecc-shadow);
  transition: all 0.2s;
  cursor: default;
}
.ecc-theme-card:hover {
  border-color: rgba(58,83,164,0.4);
  box-shadow: var(--ecc-shadow-lg);
}

.ecc-theme-card__num {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: monospace;
  color: rgba(58,83,164,0.15);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.ecc-theme-card:hover .ecc-theme-card__num { color: rgba(58,83,164,0.35); }

.ecc-theme-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ecc-text);
}

/* =============================================
   Section: Who Should Attend
   ============================================= */
.ecc-who { background: #dce8f7; }

.ecc-who__card {
  background: var(--ecc-surface);
  border: 1px solid rgba(58,83,164,0.1);
  border-radius: var(--ecc-radius);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--ecc-shadow);
  transition: box-shadow 0.2s;
}
.ecc-who__card:hover { box-shadow: var(--ecc-shadow-lg); }

.ecc-who__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--ecc-green);
  margin-top: 2px;
}

.ecc-who__card h4 { font-size: 1rem; font-weight: 700; }

/* =============================================
   Section: Speakers Preview
   ============================================= */
.ecc-speakers { background: var(--ecc-surface); }

.ecc-speaker-card {
  background: var(--ecc-surface);
  border: 1px solid var(--ecc-border);
  border-radius: var(--ecc-radius);
  overflow: hidden;
  box-shadow: var(--ecc-shadow);
  transition: all 0.3s;
}
.ecc-speaker-card:hover {
  box-shadow: var(--ecc-shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(58,83,164,0.3);
}

.ecc-speaker-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #e2e8f0;
}
.ecc-speaker-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.ecc-speaker-card:hover .ecc-speaker-card__img img { transform: scale(1.05); }

.ecc-speaker-card__info { padding: 1.25rem; }
.ecc-speaker-card__name { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.ecc-speaker-card__title { font-size: 0.8rem; font-weight: 600; color: var(--ecc-red); margin-bottom: 0.25rem; }
.ecc-speaker-card__org { font-size: 0.8rem; color: var(--ecc-muted); }

/* =============================================
   Section: Partners
   ============================================= */
.ecc-partners { background: var(--ecc-bg); border-top: 1px solid var(--ecc-border); border-bottom: 1px solid var(--ecc-border); }

.ecc-partners__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ecc-muted);
  text-align: center;
  margin-bottom: 2rem;
}

.ecc-partners__strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.ecc-partners__strip:hover { opacity: 0.8; }

.ecc-partner-placeholder {
  width: 130px;
  height: 48px;
  background: #e2e8f0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
}

/* =============================================
   Section: CTA / Registration Banner
   ============================================= */
.ecc-cta {
  background: linear-gradient(135deg, var(--ecc-blue) 0%, var(--ecc-dark-1) 60%, var(--ecc-dark-2) 100%);
  position: relative;
  overflow: hidden;
}

.ecc-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ecc-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.ecc-cta h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}
.ecc-cta p { color: rgba(255,255,255,0.8); font-size: 1.125rem; margin-bottom: 2rem; }

/* =============================================
   Registration Page
   ============================================= */
.ecc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.ecc-pricing-card {
  background: var(--ecc-surface);
  border: 1px solid var(--ecc-border);
  border-radius: var(--ecc-radius);
  padding: 2rem;
  box-shadow: var(--ecc-shadow);
}

.ecc-pricing-card--featured {
  background: linear-gradient(160deg, var(--ecc-blue), var(--ecc-dark-1));
  border-color: var(--ecc-blue);
  transform: translateY(-1rem);
  box-shadow: var(--ecc-shadow-lg);
  position: relative;
}

.ecc-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ecc-yellow);
  color: var(--ecc-dark-2);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: 50px;
}

.ecc-pricing-card__name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.ecc-pricing-card__desc { font-size: 0.85rem; color: var(--ecc-muted); margin-bottom: 1.25rem; }
.ecc-pricing-card--featured .ecc-pricing-card__desc { color: rgba(255,255,255,0.65); }
.ecc-pricing-card--featured .ecc-pricing-card__name { color: #fff; }

.ecc-pricing-card__price {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
}
.ecc-pricing-card--featured .ecc-pricing-card__price { color: #fff; }

.ecc-pricing-card ul { display: flex; flex-direction: column; gap: 0.625rem; }
.ecc-pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--ecc-muted);
}
.ecc-pricing-card--featured li { color: rgba(255,255,255,0.85); }
.ecc-pricing-card li::before {
  content: '✓';
  font-weight: 700;
  flex-shrink: 0;
  color: var(--ecc-green);
}
.ecc-pricing-card--featured li::before { color: var(--ecc-yellow); }

/* Form */
.ecc-form-card {
  background: var(--ecc-surface);
  border: 1px solid var(--ecc-border);
  border-radius: var(--ecc-radius);
  padding: 2.5rem;
  box-shadow: var(--ecc-shadow);
  max-width: 800px;
  margin: 0 auto;
}

.ecc-form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ecc-border);
  margin-bottom: 1.5rem;
}

.ecc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.ecc-form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.ecc-form-group--full { grid-column: 1 / -1; }

label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ecc-text);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ecc-border);
  border-radius: 0.5rem;
  font-family: var(--font-main);
  font-size: 0.925rem;
  color: var(--ecc-text);
  background: var(--ecc-surface);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--ecc-blue);
  box-shadow: 0 0 0 3px rgba(58,83,164,0.12);
}

textarea { resize: vertical; min-height: 100px; }

.ecc-form-submit { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--ecc-border); }
.ecc-form-note { font-size: 0.75rem; color: var(--ecc-muted); margin-top: 0.75rem; }

/* =============================================
   FAQ Page
   ============================================= */
.ecc-faq-card {
  background: var(--ecc-surface);
  border: 1px solid var(--ecc-border);
  border-radius: var(--ecc-radius);
  box-shadow: var(--ecc-shadow);
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
}

.ecc-faq-item {
  border-bottom: 1px solid var(--ecc-border);
}
.ecc-faq-item:last-child { border-bottom: none; }

.ecc-faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ecc-text);
  text-align: left;
  transition: background 0.15s;
}
.ecc-faq-item__question:hover { background: var(--ecc-bg); }
.ecc-faq-item__question .arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.25s;
  color: var(--ecc-blue);
}
.ecc-faq-item.open .arrow { transform: rotate(180deg); }

.ecc-faq-item__answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--ecc-muted);
  line-height: 1.75;
}
.ecc-faq-item.open .ecc-faq-item__answer { display: block; }

/* =============================================
   Contact Page
   ============================================= */
.ecc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  max-width: 1040px;
  margin: 0 auto;
}

.ecc-contact-info {
  background: var(--ecc-surface);
  border: 1px solid var(--ecc-border);
  border-radius: var(--ecc-radius);
  padding: 2rem;
  box-shadow: var(--ecc-shadow);
}

.ecc-contact-info h3 { font-size: 1.25rem; margin-bottom: 1.5rem; }

.ecc-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.ecc-contact-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ecc-contact-item__icon svg { width: 18px; height: 18px; }

.ecc-contact-item p { font-size: 0.8rem; color: var(--ecc-muted); margin-bottom: 0.2rem; font-weight: 600; }
.ecc-contact-item a, .ecc-contact-item span { font-weight: 500; color: var(--ecc-text); }
.ecc-contact-item a:hover { color: var(--ecc-blue); }

.ecc-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.ecc-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ecc-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ecc-muted);
  border: 1px solid var(--ecc-border);
  transition: all 0.2s;
}
.ecc-social a:hover { background: var(--ecc-blue); color: #fff; border-color: var(--ecc-blue); }
.ecc-social svg { width: 18px; height: 18px; }

.ecc-sponsor-cta {
  background: linear-gradient(135deg, var(--ecc-blue), var(--ecc-dark-1));
  border-radius: var(--ecc-radius);
  padding: 3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.ecc-sponsor-cta h3 { font-size: 1.75rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.ecc-sponsor-cta p { color: rgba(255,255,255,0.8); max-width: 500px; }

/* =============================================
   Speakers Page
   ============================================= */
.ecc-speakers-hero {
  background: var(--ecc-bg);
  padding: 7rem 0 3rem;
}

.ecc-more-speakers {
  background: #eef1fb;
  border-radius: var(--ecc-radius);
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
}
.ecc-more-speakers h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.ecc-more-speakers p { color: var(--ecc-muted); }

/* =============================================
   Footer
   ============================================= */
.ecc-footer {
  background: var(--ecc-dark-2);
  color: #fff;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.ecc-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.ecc-footer__logo { height: 48px; margin-bottom: 1rem; }

.ecc-footer__tagline { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }

.ecc-footer__social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.ecc-footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}
.ecc-footer__social a:hover { background: var(--ecc-blue); color: #fff; border-color: var(--ecc-blue); }
.ecc-footer__social svg { width: 16px; height: 16px; }

.ecc-footer__col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; color: #fff; }
.ecc-footer__col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.ecc-footer__col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.ecc-footer__col ul a:hover { color: #fff; }

.ecc-footer__newsletter p { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }

.ecc-footer__subscribe {
  display: flex;
  overflow: hidden;
  border-radius: 0.5rem;
}
.ecc-footer__subscribe input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  color: #fff;
  border-radius: 0.5rem 0 0 0.5rem;
}
.ecc-footer__subscribe input::placeholder { color: rgba(255,255,255,0.35); }
.ecc-footer__subscribe button {
  background: var(--ecc-blue);
  color: #fff;
  border: none;
  padding: 0.75rem 1.125rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-main);
  transition: background 0.2s;
  border-radius: 0 0.5rem 0.5rem 0;
}
.ecc-footer__subscribe button:hover { background: var(--ecc-dark-1); }

.ecc-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.ecc-footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.ecc-footer__legal { display: flex; gap: 1.25rem; }
.ecc-footer__legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.ecc-footer__legal a:hover { color: #fff; }

/* =============================================
   Page Title Banner
   ============================================= */
.ecc-page-title {
  background: linear-gradient(135deg, var(--ecc-dark-2), var(--ecc-dark-1));
  padding: 7rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.ecc-page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,203,3,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.ecc-page-title .ecc-label { color: rgba(255,255,255,0.5); }
.ecc-page-title h1 { font-size: clamp(2rem, 5vw, 3.25rem); color: #fff; margin-bottom: 0.75rem; }
.ecc-page-title p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 600px; }

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
  .ecc-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ecc-footer__grid { grid-template-columns: 1fr 1fr; }
  .ecc-contact-grid { grid-template-columns: 1fr; }
  .ecc-sponsor-cta { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .ecc-nav__links { display: none; }
  .ecc-nav__hamburger { display: flex; }
  .ecc-grid--2,
  .ecc-grid--3 { grid-template-columns: 1fr; }
  .ecc-purpose__grid { grid-template-columns: 1fr; }
  .ecc-pricing-grid { grid-template-columns: 1fr; }
  .ecc-pricing-card--featured { transform: none; }
  .ecc-form-grid { grid-template-columns: 1fr; }
  .ecc-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .ecc-footer__bottom { flex-direction: column; text-align: center; }
  .ecc-hero__actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .ecc-section { padding: 3rem 0; }
  .ecc-container { padding: 0 1rem; }
}

/* =============================================
   WordPress Core
   ============================================= */
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--ecc-muted); text-align: center; margin-top: 0.5rem; }

.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  background: var(--ecc-blue);
  color: #fff;
  padding: 0.75rem 1.5rem;
  z-index: 99999;
  font-weight: 700;
}
.skip-link:focus { top: 0; }

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

.anim-fade-up {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
