/*
Theme Name: Eventia Hospitality
Theme URI: https://eventia.co.in
Author: Eventia Hospitality
Author URI: https://eventia.co.in
Description: Premium hospitality theme for Eventia — MICE, Weddings, Hotel Marketing & Travel. Fully compatible with Elementor page builder.
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: eventia
Tags: one-page, hospitality, elementor, business, luxury
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --gold: #C08D25;
  --gold-light: #d4a940;
  --gold-pale: #f7f0df;
  --navy: #0d1e35;
  --navy-mid: #162840;
  --cream: #faf8f2;
  --cream-mid: #f2ede2;
  --cream-dark: #e5dece;
  --text-dark: #0d1e35;
  --text-mid: #4a5568;
  --text-light: #8a96a8;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(13,30,53,0.06);
  --shadow-md: 0 8px 32px rgba(13,30,53,0.10);
  --shadow-lg: 0 20px 60px rgba(13,30,53,0.14);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

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

/* WordPress admin bar offset */
.admin-bar .eventia-nav { top: 32px; }
.admin-bar .eventia-mobile-nav { top: 104px; }
@media screen and (max-width: 782px) {
  .admin-bar .eventia-nav { top: 46px; }
  .admin-bar .eventia-mobile-nav { top: 118px; }
}
@media screen and (max-width: 600px) {
  .admin-bar .eventia-nav { top: 0; }
  .admin-bar .eventia-mobile-nav { top: 72px; }
}

/* Elementor full-width page template */
.page-template-elementor_canvas .eventia-nav,
.page-template-elementor_canvas footer.eventia-footer { display: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.eventia-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px; height: 72px;
  background: rgba(250,248,242,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(192,141,37,0.15);
  transition: box-shadow 0.3s var(--ease);
}
.eventia-nav.scrolled { box-shadow: var(--shadow-md); }
.eventia-nav .nav-logo img { width: 160px; height: auto; display: block; }
.eventia-nav .nav-links { display: flex; gap: 36px; list-style: none; }
.eventia-nav .nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none; transition: color 0.2s; position: relative;
}
.eventia-nav .nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.eventia-nav .nav-links a:hover,
.eventia-nav .nav-links a.active { color: var(--gold); }
.eventia-nav .nav-links a:hover::after,
.eventia-nav .nav-links a.active::after { width: 100%; }
.eventia-nav .nav-cta {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; background: var(--navy); padding: 11px 28px;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.eventia-nav .nav-cta:hover { background: var(--gold); transform: translateY(-1px); }

/* ── Services dropdown ── */
.nav-links .has-dropdown { position: relative; }

.nav-links .has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.22s var(--ease);
  opacity: 0.7;
}

.nav-chevron svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  display: block;
}

.has-dropdown:hover .nav-chevron,
.has-dropdown:focus-within .nav-chevron { transform: rotate(180deg); opacity: 1; }

.nav-dropdown {
  position: absolute;
  /* No gap — use padding-top on the list itself so mouse stays inside the <li> */
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  padding-top: 12px; /* transparent bridge — mouse stays inside <li> during travel */
  background: transparent;
  z-index: 200;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s linear 0.2s;
  min-width: 220px;
}

/* The visible white card sits inside the padding-top gap */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border: 0.5px solid var(--cream-dark);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(13,30,53,0.13);
  z-index: -1;
}

/* Arrow pip pointing up */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 11px;
  height: 11px;
  background: #fff;
  border-left: 0.5px solid var(--cream-dark);
  border-top: 0.5px solid var(--cream-dark);
  border-radius: 2px 0 0 0;
  z-index: 1;
}

/* Open state */
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s linear 0s;
}

.nav-dropdown li a {
  display: block;
  position: relative;
  z-index: 2;
  padding: 10px 20px;
  font-size: 13.5px;
  color: var(--text-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown li a::after { display: none; }
.nav-dropdown li a:hover,
.nav-dropdown li a:focus {
  background: var(--cream);
  color: var(--gold);
  outline: none;
}
.nav-dropdown li:first-child a { border-radius: 10px 10px 0 0; }
.nav-dropdown li:last-child  a { border-radius: 0 0 10px 10px; }

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown { transition: opacity 0.1s, visibility 0s; transform: translateX(-50%) !important; }
  .nav-chevron  { transition: none; }
}

/* Mobile hamburger */
.eventia-nav .nav-hamburger {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 4px;
}
.eventia-nav .nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--navy);
  transition: all 0.3s var(--ease);
}
.eventia-nav .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.eventia-nav .nav-hamburger.open span:nth-child(2) { opacity: 0; }
.eventia-nav .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.eventia-mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(250,248,242,0.98); backdrop-filter: blur(20px);
  z-index: 9998; padding: 8px 28px 24px; border-bottom: 1px solid rgba(192,141,37,0.15);
  flex-direction: column; gap: 0;
}
.eventia-mobile-nav.open { display: flex; }
.eventia-mobile-nav a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid var(--cream-dark); transition: color 0.2s;
}
.eventia-mobile-nav a:hover { color: var(--gold); }

/* Plan My Event link inside mobile drawer — styled distinctly but not loud */
.eventia-mobile-nav a.mobile-nav-cta {
  margin-top: 8px;
  border-bottom: none;
  border: 1px solid var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 12px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  transition: background 0.2s, color 0.2s;
}
.eventia-mobile-nav a.mobile-nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── Mobile Services accordion ── */
.mobile-nav-accordion {
  border-bottom: 1px solid var(--cream-dark);
}
.mobile-nav-accordion-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
  font-family: var(--sans);
}
.mobile-nav-accordion-btn:hover,
.mobile-nav-accordion-btn[aria-expanded="true"] { color: var(--gold); }
.mobile-acc-icon {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.22s var(--ease);
}
.mobile-nav-accordion-btn[aria-expanded="true"] .mobile-acc-icon { transform: rotate(45deg); }

.mobile-nav-sub {
  list-style: none;
  padding: 0 0 8px 14px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-sub li a {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--text-mid);
  text-decoration: none;
  padding: 9px 0;
  border-bottom: none;
  transition: color 0.15s;
}
.mobile-nav-sub li a:hover { color: var(--gold); }
.mobile-nav-sub li:last-child a { padding-bottom: 4px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.eventia-hero {
  min-height: calc(100vh - 72px);
  max-height: 860px;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  margin-top: 72px; /* offset for fixed nav */
}
.eventia-hero .hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: repeating-linear-gradient(-45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 24px 24px; pointer-events: none;
}
.eventia-hero .hero-glow {
  position: absolute; bottom: -200px; left: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,141,37,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.eventia-hero .hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px; position: relative; z-index: 2;
}
.eventia-hero .hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
}
.eventia-hero .hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); opacity: 0.6; }
.eventia-hero h1.hero-title {
  font-family: var(--serif); font-size: clamp(52px, 5.5vw, 88px);
  font-weight: 300; line-height: 1.04; color: #fff; letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.eventia-hero h1.hero-title em { font-style: italic; color: var(--gold); }
.eventia-hero .hero-desc {
  font-size: 15px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.5); max-width: 420px; margin-bottom: 44px;
}
.eventia-hero .hero-actions { display: flex; gap: 14px; margin-bottom: 60px; flex-wrap: wrap; }
.eventia-hero .hero-pills { display: flex; gap: 20px; flex-wrap: wrap; }
.eventia-hero .hero-pill {
  font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); display: flex; align-items: center; gap: 8px;
}
.eventia-hero .hero-pill::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.7; }
.eventia-hero .hero-right { position: relative; overflow: hidden; }
.eventia-hero .hero-right-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.45) saturate(0.8);
  transform: scale(1.02); transition: transform 6s ease;
}
.eventia-hero:hover .hero-right-img { transform: scale(1.06); }
.eventia-hero .hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,30,53,0.5) 0%, transparent 50%),
              linear-gradient(to top, rgba(13,30,53,0.92) 0%, transparent 55%);
}
.eventia-hero .hero-stats-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(192,141,37,0.2);
}
.eventia-hero .hero-stat {
  padding: 24px 22px; border-right: 1px solid rgba(192,141,37,0.15);
  background: rgba(13,30,53,0.75); backdrop-filter: blur(12px);
}
.eventia-hero .hero-stat:last-child { border-right: none; }
.eventia-hero .hero-stat-num {
  font-family: var(--serif); font-size: 38px; font-weight: 300;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.eventia-hero .hero-stat-label {
  font-size: 9px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}

/* ============================================================
   SHARED / ELEMENTOR WIDGET STYLES
   ============================================================ */
.eventia-section-inner { max-width: 1240px; margin: 0 auto; padding: 56px 64px; }

/* Section label */
.eventia-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 12px;
}
.eventia-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

/* Section titles */
.eventia-title {
  font-family: var(--serif); font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 300; line-height: 1.1; color: var(--text-dark); margin-bottom: 20px;
}
.eventia-title em { font-style: italic; color: var(--gold); }
.eventia-title.light { color: #fff; }
.eventia-body { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--text-mid); }

/* Buttons */
.btn-primary {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); background: var(--gold); padding: 15px 36px;
  text-decoration: none; transition: background 0.2s, transform 0.15s; display: inline-flex;
  align-items: center; justify-content: center; text-align: center;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--navy); }
.btn-ghost {
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.18);
  padding: 15px 36px; text-decoration: none; transition: all 0.2s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; background: var(--navy); padding: 16px 40px; white-space: nowrap;
  text-decoration: none; transition: background 0.2s, transform 0.15s; display: inline-block; flex-shrink: 0;
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); color: #fff; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.eventia-services-section { background: var(--cream); }
.eventia-services-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: end; margin-bottom: 56px;
}
.eventia-services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--cream-dark); border: 1px solid var(--cream-dark);
}
.eventia-service-card {
  background: var(--cream); display: flex; flex-direction: column;
  overflow: hidden; transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.eventia-service-card:hover {
  background: #fff; transform: translateY(-4px);
  box-shadow: var(--shadow-lg); z-index: 2; position: relative;
}
.eventia-service-card .card-img-wrap { overflow: hidden; height: 180px; flex-shrink: 0; }
.eventia-service-card .card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease); filter: brightness(0.9) saturate(0.85);
}
.eventia-service-card:hover .card-img-wrap img { transform: scale(1.08); }
.eventia-service-card .card-body { padding: 32px 28px; flex: 1; display: flex; flex-direction: column; }
.eventia-service-card .card-num {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: block;
}
.eventia-service-card .card-name {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  color: var(--text-dark); margin-bottom: 12px; line-height: 1.2;
}
.eventia-service-card .card-desc {
  font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--text-mid);
  margin-bottom: 20px; flex: 1;
}
.eventia-service-card .card-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.eventia-service-card .card-tag {
  font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(192,141,37,0.25); padding: 3px 9px;
  background: var(--gold-pale);
}
.eventia-service-card .card-link {
  display: inline-flex; align-items: center; gap: 8px; font-size: 10px;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); text-decoration: none; margin-top: 20px;
  transition: gap 0.2s, color 0.2s;
}
.eventia-service-card .card-link:hover { gap: 14px; color: var(--gold); }

/* ============================================================
   WHY SECTION
   ============================================================ */
.eventia-why-section { background: var(--navy); }
.eventia-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.eventia-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(192,141,37,0.12); margin-top: 48px;
  border: 1px solid rgba(192,141,37,0.12);
}
.eventia-stat-item {
  background: var(--navy); padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; transition: background 0.25s var(--ease);
}
.eventia-stat-item::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.4s var(--ease);
}
.eventia-stat-item:hover { background: rgba(255,255,255,0.03); }
.eventia-stat-item:hover::after { width: 100%; }
.eventia-stat-item .stat-num {
  font-family: var(--serif); font-size: 44px; font-weight: 300;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.eventia-stat-item .stat-label {
  font-size: 9px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}
.eventia-why-points { display: flex; flex-direction: column; }
.eventia-why-point {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: padding-left 0.25s var(--ease);
}
.eventia-why-point:first-child { padding-top: 0; }
.eventia-why-point:hover { padding-left: 8px; }
.eventia-why-point .point-num {
  font-family: var(--serif); font-size: 12px; color: var(--gold);
  font-weight: 500; flex-shrink: 0; padding-top: 4px; letter-spacing: 0.1em;
}
.eventia-why-point h4 {
  font-family: var(--serif); font-size: 21px; font-weight: 500;
  color: #fff; margin-bottom: 7px;
}
.eventia-why-point p { font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.38); }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.eventia-testimonials-section { background: var(--cream-mid); }
.eventia-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.eventia-testimonial-card {
  background: #fff; padding: 40px 36px; display: flex; flex-direction: column;
  border: 1px solid var(--cream-dark); position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.eventia-testimonial-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.eventia-testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.eventia-testimonial-card:hover::before { transform: scaleX(1); }
.eventia-testimonial-card .t-stars { color: var(--gold); font-size: 12px; letter-spacing: 3px; margin-bottom: 20px; }
.eventia-testimonial-card .t-text {
  font-family: var(--serif); font-size: 17px; font-weight: 400;
  line-height: 1.75; color: var(--text-dark); font-style: italic;
  margin-bottom: 28px; flex: 1;
}
.eventia-testimonial-card .t-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.eventia-testimonial-card .t-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-pale); border: 1.5px solid rgba(192,141,37,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 17px; color: var(--gold);
}
.eventia-testimonial-card .t-name { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.eventia-testimonial-card .t-role { font-size: 11px; color: var(--text-light); letter-spacing: 0.03em; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.eventia-contact-section { background: var(--cream); }
.eventia-contact-top {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; margin-bottom: 60px; align-items: start;
}
.eventia-contact-items { display: flex; flex-direction: column; margin-top: 36px; }
.eventia-contact-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid var(--cream-dark);
}
.eventia-contact-item:first-child { padding-top: 0; }
.eventia-contact-icon {
  width: 40px; height: 40px; border: 1px solid rgba(192,141,37,0.3);
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.eventia-contact-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.eventia-contact-item-label { font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.eventia-contact-item-value { font-size: 14px; font-weight: 300; color: var(--text-dark); line-height: 1.5; }

/* Contact form */
.eventia-form-wrap { background: var(--navy); padding: 48px 44px; }
.eventia-form-title { font-family: var(--serif); font-size: 28px; font-weight: 300; color: #fff; margin-bottom: 28px; }
.eventia-form-title em { font-style: italic; color: var(--gold); }
.eventia-contact-form { display: flex; flex-direction: column; gap: 16px; }
.eventia-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.eventia-form-group { display: flex; flex-direction: column; gap: 7px; }
.eventia-form-group label { font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.eventia-form-group input,
.eventia-form-group select,
.eventia-form-group textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 14px; font-family: var(--sans); font-size: 16px; font-weight: 300;
  color: #fff; outline: none; transition: border-color 0.2s; appearance: none; width: 100%;
}
.eventia-form-group input::placeholder,
.eventia-form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
.eventia-form-group input:focus,
.eventia-form-group select:focus,
.eventia-form-group textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }
.eventia-form-group textarea { resize: vertical; min-height: 100px; }
.eventia-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C08D25' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; color: rgba(255,255,255,0.55);
}
.eventia-form-group select option { background: var(--navy); }
.eventia-form-success { display: none; color: var(--gold); font-size: 12px; padding: 12px; border: 1px solid rgba(192,141,37,0.3); background: rgba(192,141,37,0.07); margin-top: 4px; }

/* Map */
.eventia-map-wrap { border: 1px solid var(--cream-dark); overflow: hidden; }
.eventia-map-label { background: var(--navy); padding: 14px 24px; display: flex; align-items: center; gap: 12px; }
.eventia-map-label svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.eventia-map-label span { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.eventia-map-label strong { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-left: 4px; }
.eventia-map-wrap iframe { display: block; width: 100%; height: 320px; border: 0; filter: saturate(0.8) contrast(1.05); }

/* ============================================================
   CTA BAND
   ============================================================ */
.eventia-cta-band {
  background: var(--gold); padding: 64px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 20px; text-align: center;
}
.eventia-cta-band h2 {
  font-family: var(--serif); font-size: clamp(32px, 3vw, 48px); font-weight: 300;
  color: var(--navy); line-height: 1.1; margin-bottom: 8px;
  text-align: center; width: 100%;
}
.eventia-cta-band p {
  font-size: 15px; font-weight: 300; color: rgba(13,30,53,0.65);
  max-width: 520px; text-align: center; width: 100%; margin: 0 auto;
}
.eventia-cta-band .cta-text {
  width: 100%; text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.eventia-footer {
  background: var(--navy); padding: 48px 64px 32px;
  border-top: 1px solid rgba(192,141,37,0.1);
}
.eventia-footer .footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 48px;
  margin-bottom: 36px; align-items: start; padding-top: 8px;
}
.eventia-footer .footer-brand { display: flex; flex-direction: column; align-items: flex-start; padding-top: 0; }
.eventia-footer .footer-logo { margin-bottom: 16px; margin-top: 2px; }
.eventia-footer .footer-logo img { width: 160px; height: auto; display: block; }
.eventia-footer .footer-tagline {
  font-family: var(--serif); font-size: 15px; font-style: italic;
  color: rgba(255,255,255,0.3); margin-bottom: 20px;
}
.eventia-footer .footer-social { display: flex; gap: 12px; }
.eventia-footer .social-link {
  width: 36px; height: 36px; border: 1px solid rgba(192,141,37,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.eventia-footer .social-link svg { width: 15px; height: 15px; }
.eventia-footer .social-link:hover { color: var(--gold); border-color: var(--gold); background: rgba(192,141,37,0.08); }
.eventia-footer .footer-col-title {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.eventia-footer .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.eventia-footer .footer-links a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.eventia-footer .footer-links a:hover { color: var(--gold); }
.eventia-footer .footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
.eventia-footer .footer-contact-item,
.eventia-footer a.footer-contact-item {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45);
  display: flex; align-items: flex-start; gap: 10px; text-decoration: none; transition: color 0.2s;
}
.eventia-footer a.footer-contact-item:hover { color: var(--gold); }
.eventia-footer .footer-contact-item svg,
.eventia-footer a.footer-contact-item svg {
  width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px;
}
.eventia-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.eventia-footer .footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.04em; }
.eventia-footer .footer-legal { display: flex; gap: 24px; }
.eventia-footer .footer-legal a { font-size: 11px; color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.2s; }
.eventia-footer .footer-legal a:hover { color: var(--gold); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.eventia-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.eventia-reveal.visible { opacity: 1; transform: translateY(0); }
.eventia-reveal-delay-1 { transition-delay: 0.1s; }
.eventia-reveal-delay-2 { transition-delay: 0.2s; }
.eventia-reveal-delay-3 { transition-delay: 0.3s; }
.eventia-reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   ELEMENTOR WIDGET OVERRIDES
   (keeps Elementor widgets styled correctly inside eventia sections)
   ============================================================ */
.elementor-widget-heading .elementor-heading-title { font-family: var(--serif) !important; }
.elementor-widget-button .elementor-button { border-radius: 0 !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .eventia-services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile-only stats strip (shown when hero image is hidden) */
.eventia-hero .hero-mobile-stats {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(192,141,37,0.2);
  background: var(--navy);
}

/* ── Tablet: 769px–1100px — 2-col testimonials ── */
@media (min-width: 769px) and (max-width: 1100px) {
  .eventia-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Nav: hide links and CTA, show hamburger up to 900px ── */
@media (max-width: 900px) {
  .eventia-nav { padding: 0 24px; }
  .eventia-nav .nav-links { display: none; }
  .eventia-nav .nav-hamburger { display: flex; }
  .eventia-nav .nav-cta { display: none; }
}

/* ── Layout: stack sections below 768px ── */
@media (max-width: 768px) {
  .eventia-hero { grid-template-columns: 1fr; }
  .eventia-hero .hero-right { display: none; }
  .eventia-hero .hero-mobile-stats { display: grid; }
  .eventia-hero .hero-left { padding: 80px 24px 48px; }

  .eventia-section-inner { padding: 48px 24px; }
  .eventia-services-grid { grid-template-columns: repeat(2, 1fr); }
  .eventia-services-header { grid-template-columns: 1fr; }
  .eventia-why-grid { grid-template-columns: 1fr; gap: 40px; }
  .eventia-testimonials-grid { grid-template-columns: 1fr; }
  .eventia-contact-top { grid-template-columns: 1fr; gap: 36px; }

  .eventia-cta-band { padding: 48px 24px; }
}

/* ── Footer responsive grid ── */
@media (max-width: 1060px) {
  /* Tablet: 2×2 grid */
  .eventia-footer .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 599px) {
  .eventia-footer { padding: 40px 24px 28px; }
  .eventia-footer .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .eventia-footer .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Small mobile: max 600px — single col services ── */
@media (max-width: 600px) {
  .eventia-services-grid { grid-template-columns: 1fr; }
}

/* ── Very small mobile: max 480px ── */
@media (max-width: 480px) {
  .eventia-hero .hero-stats-strip { grid-template-columns: 1fr; }
  .eventia-hero .hero-left { padding: 72px 20px 40px; }
  .eventia-section-inner { padding: 40px 20px; }
}

/* Hide reCAPTCHA floating badge — legal notice shown near form instead */
.grecaptcha-badge { visibility: hidden !important; width: 0 !important; height: 0 !important; }
@media (max-width: 360px) {
  .eventia-form-row { grid-template-columns: 1fr; }
  .eventia-hero h1.hero-title { font-size: 40px; }
  .eventia-nav { padding: 0 16px; }
  .eventia-cta-band { padding: 32px 20px; }
}

/* ============================================================
   WHATSAPP — Floating Button + Footer Item
   ============================================================ */

/* Footer WhatsApp social icon */
.eventia-footer .social-link-wa { color: #25D366; border-color: rgba(37,211,102,0.3); }
.eventia-footer .social-link-wa:hover { color: #fff; border-color: #25D366; background: #25D366; }
.eventia-footer .social-link-wa svg { width: 16px; height: 16px; }

/* Footer WhatsApp contact item */
.eventia-footer .footer-wa-item { color: #25D366 !important; }
.eventia-footer .footer-wa-item svg { stroke: none !important; fill: #25D366 !important; width: 16px !important; height: 16px !important; flex-shrink: 0 !important; }
.eventia-footer .footer-wa-item:hover { color: #128C7E !important; }

/* Floating WhatsApp Button */
.eventia-wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 52px;
  overflow: hidden;
}
.eventia-wa-float:hover {
  max-width: 200px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  transform: translateY(-2px);
}
.wa-float-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
}
.wa-float-icon::before,
.wa-float-icon::after { display: none; }
.wa-float-label {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
}
.eventia-wa-float:hover .wa-float-label { opacity: 1; }

/* Pulse ring animation */
.wa-float-pulse {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50px;
  background: #25D366;
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* On mobile — always show label, no hover expansion needed */
@media (max-width: 768px) {
  .eventia-wa-float {
    bottom: 20px;
    right: 16px;
    padding: 11px 18px 11px 12px;
    max-width: 180px;
  }
  .wa-float-label { opacity: 1; }
  .wa-float-icon { width: 22px; height: 22px; }
}

/* ═══════════════════════════════════════════════════════════════
   DEDICATED SERVICE PAGES — Styles
   Added for individual service page templates (MICE, Wedding,
   Hotel Marketing, Travel Management).
   Google 2026 AI-first: clear layout hierarchy, readable content
   ═══════════════════════════════════════════════════════════════ */

/* Breadcrumb */
.eventia-breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 12px 0;
  font-size: 0.82rem;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.breadcrumb-list a { color: var(--gold); text-decoration: none; }
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-list .sep { color: var(--text-light); }

/* Service Hero */
.eventia-service-page {
  margin-top: 72px; /* offset for fixed nav */
}
/* Admin bar adds 32px on desktop, 46px on tablet */
.admin-bar .eventia-service-page { margin-top: 104px; }
@media screen and (max-width: 782px) {
  .admin-bar .eventia-service-page { margin-top: 118px; }
}
.eventia-service-hero {
  position: relative;
  min-height: clamp(380px, 52vw, 600px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.service-hero-img-wrap {
  position: absolute;
  inset: 0;
}
.service-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.75) 0%, rgba(10,10,10,.35) 60%, transparent 100%);
}
.service-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.service-hero-content .eventia-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0.6rem 0 1rem;
}

/* Overview two-col */
.eventia-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 800px) {
  .eventia-two-col { grid-template-columns: 1fr; gap: 2rem; }
}
.overview-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.eventia-checklist {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.eventia-checklist li {
  padding-left: 1.6em;
  position: relative;
  font-size: 0.97rem;
}
.eventia-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Features grid */
.eventia-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.eventia-feature-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  padding: 1.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.eventia-feature-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
  transform: translateY(-3px);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-dark);
}
.feature-body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0;
}

/* FAQ */
.eventia-faq-inner {
  max-width: 780px;
  margin: 0 auto;
}
.eventia-faq-inner .eventia-title-sm { margin-bottom: 2rem; }
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 1rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text-dark);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.2s;
}
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* Related Services */
.eventia-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.eventia-related-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}
.related-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--cream-dark);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  background: #fff;
}
.related-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  transform: translateY(-4px);
}
.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.related-label {
  display: block;
  padding: 0.9rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  line-height: 1.4;
}
@media (max-width: 860px) {
  .eventia-related-grid--4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .eventia-related-grid--4col { grid-template-columns: 1fr; }
}

/* Section alt background */
.eventia-section--alt {
  background: var(--cream);
}

/* Utility: title-sm */
.eventia-title-sm {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 0 0 1.2rem;
}

/* ═══════════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════════ */
.eventia-trust-bar {
  background: var(--navy);
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.trust-bar-inner {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.trust-stat {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
}
.trust-stat-num {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.4;
}
.trust-divider {
  width: 1px;
  background: rgba(255,255,255,.08);
  margin: 20px 0;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-stat { width: 50%; flex: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .trust-divider { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   FEATURED EXPERIENCES SECTION (homepage)
   ═══════════════════════════════════════════════════════════════ */
.eventia-experiences-section {
  padding: 56px 0;
  background: var(--cream);
}
.eventia-experiences-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.eventia-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.eventia-exp-grid--archive {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.eventia-exp-card {
  background: #fff;
  border: 0.5px solid var(--cream-dark);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.eventia-exp-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.exp-card-img-link { display: block; }
.exp-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.exp-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.eventia-exp-card:hover .exp-card-img-wrap img { transform: scale(1.04); }
.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,30,53,.3) 0%, transparent 60%);
}
.exp-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.exp-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(192,141,37,.2);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.exp-card-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 8px;
}
.exp-card-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color .2s;
}
.exp-card-title a:hover { color: var(--gold); }
.exp-card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--text-mid);
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.exp-meta-yr {
  font-size: 11px;
  color: var(--text-light);
  padding-left: 12px;
  border-left: 1px solid var(--cream-dark);
}
.exp-card-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.exp-card-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s, color .2s;
  margin-top: auto;
}
.exp-card-link:hover { gap: 10px; color: var(--gold); }
@media (max-width: 900px) {
  .eventia-exp-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .eventia-exp-grid { grid-template-columns: 1fr; }
  .eventia-experiences-header { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS / HOW WE WORK SECTION
   ═══════════════════════════════════════════════════════════════ */
.eventia-process-section {
  padding: 56px 0;
  background: var(--cream-mid);
}
.eventia-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.eventia-process-step {
  padding: 32px 28px;
  position: relative;
  background: transparent;
  text-align: center;
}
.eventia-process-step + .eventia-process-step {
  border-left: 1px dashed var(--cream-dark);
}
.process-step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.process-step-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: .1em;
  margin-bottom: 10px;
  display: block;
}
.process-step-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.process-step-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
@media (max-width: 860px) {
  .eventia-process-grid { grid-template-columns: 1fr 1fr; }
  .eventia-process-step + .eventia-process-step { border-left: none; }
  .eventia-process-step:nth-child(2n) { border-left: 1px dashed var(--cream-dark); }
  .eventia-process-step:nth-child(n+3) { border-top: 1px dashed var(--cream-dark); }
}
@media (max-width: 500px) {
  .eventia-process-grid { grid-template-columns: 1fr; }
  .eventia-process-step { border-left: none !important; }
  .eventia-process-step + .eventia-process-step { border-top: 1px dashed var(--cream-dark); }
}

/* ═══════════════════════════════════════════════════════════════
   SINGLE EXPERIENCE PAGE LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.eventia-exp-single-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  align-items: start;
}
.exp-single-overview,
.exp-single-content,
.exp-single-scope,
.exp-single-highlights {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--cream-dark);
}
.exp-single-highlights { border-bottom: none; margin-bottom: 0; }
.exp-scope-list,
.exp-highlights-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.exp-scope-list li,
.exp-highlights-list li {
  padding-left: 1.6em;
  position: relative;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}
.exp-scope-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.exp-highlights-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.exp-sidebar-card {
  background: #fff;
  border: 0.5px solid var(--cream-dark);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 16px;
}
.exp-sidebar-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cream-dark);
}
.exp-sidebar-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  font-size: 13px;
}
.exp-sidebar-dl dt {
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .05em;
  padding-top: 2px;
}
.exp-sidebar-dl dd { color: var(--text-dark); }
.exp-sidebar-cta p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}
.exp-wa-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  margin-top: 10px;
  transition: color .2s;
}
.exp-wa-link:hover { color: #25D366; }
.eventia-prose { font-size: 16px; line-height: 1.8; color: var(--text-mid); }
.eventia-prose h2, .eventia-prose h3 { font-family: var(--serif); color: var(--text-dark); margin: 1.5rem 0 .75rem; }
.eventia-prose p { margin-bottom: 1rem; }
@media (max-width: 860px) {
  .eventia-exp-single-layout { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════ */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  text-align: center;
}
.about-stat {
  padding: 40px 20px;
  background: #fff;
}
.about-stat-num {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.4;
}
@media (max-width: 760px) {
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   ARCHIVE / EXPERIENCES LISTING PAGE HEADER
   ═══════════════════════════════════════════════════════════════ */
.eventia-page-header {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE SEO & UX — Comprehensive fixes
   Targets: Core Web Vitals, Google Mobile-First Indexing,
   iOS/Android usability, touch targets, no-zoom on inputs
   ═══════════════════════════════════════════════════════════════ */

/* ── iOS auto-zoom prevention ──────────────────────────────────
   iOS zooms in when an input has font-size < 16px.
   Google PageSpeed and Lighthouse both flag this.
   ------------------------------------------------------------ */
input,
select,
textarea,
button {
  font-size: 16px; /* minimum — prevents iOS auto-zoom */
}

/* Override back to design sizes on desktop only */
@media (min-width: 769px) {
  .eventia-form-group input,
  .eventia-form-group select,
  .eventia-form-group textarea {
    font-size: 14px;
  }
}

/* ── Touch targets — minimum 44×44px (Apple HIG + Google) ──── */
.eventia-nav .nav-links a,
.eventia-nav .nav-cta,
.nav-hamburger,
.mobile-nav-accordion-btn,
.eventia-mobile-nav a,
.mobile-nav-sub li a,
.btn-primary,
.btn-ghost,
.btn-navy,
.exp-card-link,
.card-link,
.related-card,
.faq-q,
.footer-links a,
.footer-contact-item,
.social-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* Block-level elements that are full-width already */
.mobile-nav-accordion-btn,
.eventia-mobile-nav a,
.faq-q {
  display: flex;
  width: 100%;
}

/* ── Tap highlight — remove default grey flash on tap ───────── */
* {
  -webkit-tap-highlight-color: rgba(192, 141, 37, 0.15);
}

a, button {
  -webkit-tap-highlight-color: rgba(192, 141, 37, 0.15);
}

/* ── Safe area insets — iPhone notch / Dynamic Island ──────── */
.eventia-nav {
  padding-left: max(32px, env(safe-area-inset-left));
  padding-right: max(32px, env(safe-area-inset-right));
}
.eventia-mobile-nav {
  padding-left: max(28px, env(safe-area-inset-left));
  padding-right: max(28px, env(safe-area-inset-right));
  padding-bottom: max(24px, env(safe-area-inset-bottom));
}
.eventia-footer {
  padding-bottom: max(32px, env(safe-area-inset-bottom));
}
.eventia-wa-float {
  bottom: max(24px, env(safe-area-inset-bottom));
  right: max(20px, env(safe-area-inset-right));
}

/* ── Text legibility on mobile ──────────────────────────────── */
body {
  -webkit-text-size-adjust: 100%; /* prevent iOS text inflation */
  text-size-adjust: 100%;
}

/* Minimum readable font sizes at 320px */
@media (max-width: 480px) {
  .eventia-body,
  .eventia-prose,
  .exp-card-desc,
  .feature-body,
  .process-step-body,
  .faq-a,
  .footer-links a,
  .footer-contact-item {
    font-size: 15px;
    line-height: 1.7;
  }

  .eventia-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .eventia-title-sm {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
  }

  /* Hero copy readable at 320px */
  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem) !important;
  }

  .hero-desc {
    font-size: 15px;
  }

  /* Service/experience cards — full width, generous padding */
  .eventia-service-card,
  .eventia-exp-card {
    border-radius: 10px;
  }

  .exp-card-body {
    padding: 18px;
  }

  .card-body {
    padding: 18px;
  }
}

/* ── Image overflow guard ───────────────────────────────────── */
img {
  max-width: 100%;
  height: auto;
}

/* ── Form UX on mobile ──────────────────────────────────────── */
@media (max-width: 600px) {
  .eventia-form-row {
    grid-template-columns: 1fr; /* stack name fields */
  }

  .eventia-form-wrap {
    padding: 32px 20px;
  }

  /* Larger tap area on submit button */
  .eventia-contact-form button[type="submit"] {
    width: 100%;
    padding: 16px;
    font-size: 15px;
  }
}

/* ── Service page two-col → single col on mobile ───────────── */
@media (max-width: 700px) {
  .eventia-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Image after text on mobile (more natural reading flow) */
  .overview-img-wrap {
    order: -1;
  }
}

/* ── Process steps → 2 col on small, 1 col on tiny ─────────── */
@media (max-width: 480px) {
  .eventia-process-grid {
    grid-template-columns: 1fr;
  }

  .eventia-process-step + .eventia-process-step {
    border-left: none;
    border-top: 1px dashed var(--cream-dark);
  }
}

/* ── Features grid → 1 col on mobile ───────────────────────── */
@media (max-width: 480px) {
  .eventia-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Related grid → 1 col on small mobile ──────────────────── */
@media (max-width: 500px) {
  .eventia-related-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Experience single page → stack on mobile ───────────────── */
@media (max-width: 760px) {
  .eventia-exp-single-layout {
    grid-template-columns: 1fr;
  }

  /* Sidebar moves below content on mobile */
  .exp-single-sidebar {
    order: -1; /* show event details above long body copy */
  }
}

/* ── About stats → 2 col on mobile ─────────────────────────── */
@media (max-width: 480px) {
  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Trust bar → 2×2 on mobile ─────────────────────────────── */
@media (max-width: 480px) {
  .trust-bar-inner {
    flex-wrap: wrap;
  }

  .trust-stat {
    width: 50%;
    flex: none;
    padding: 20px 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .trust-divider {
    display: none;
  }
}

/* ── Dropdown hidden on mobile (accordion replaces it) ──────── */
@media (max-width: 900px) {
  .nav-dropdown {
    display: none !important;
  }
}

/* ── Breadcrumb wraps cleanly on mobile ─────────────────────── */
.breadcrumb-list {
  flex-wrap: wrap;
  gap: 4px 6px;
}

/* ── Experiences grid — 1 col on small mobile ───────────────── */
@media (max-width: 500px) {
  .eventia-exp-grid {
    grid-template-columns: 1fr;
  }

  .eventia-experiences-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ── CTA band — readable on small screens ───────────────────── */
@media (max-width: 480px) {
  .eventia-cta-band h2 {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
}

/* ── Footer services column visible on mobile ───────────────── */
@media (max-width: 599px) {
  .eventia-footer .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ── Smooth scrolling — respect reduced motion ──────────────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .eventia-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Focus visible — keyboard navigation ────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Suppress focus ring on mouse click (only show on keyboard) */
:focus:not(:focus-visible) {
  outline: none;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE PAGE — Related Services Cards (clean grid)
   ═══════════════════════════════════════════════════════════════ */
.srv-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.srv-related-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .25s, transform .25s;
}
.srv-related-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  transform: translateY(-4px);
}
.srv-related-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.srv-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.srv-related-card:hover .srv-related-img img {
  transform: scale(1.04);
}
.srv-related-label {
  padding: 1rem 1.2rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.4;
  background: #fff;
}
@media (max-width: 768px) {
  .srv-related-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .srv-related-grid { grid-template-columns: 1fr; }
}
