/* Modern Design System */
:root {
 /* Colors - Professional yet vibrant palette */
 --primary: #1e40af; /* Rich blue */
 --primary-light: #3b82f6;
 --primary-dark: #1e3a8a;
 --accent: #f59e0b; /* Warm amber for CTA */
 --accent-light: #fbbf24;
 --accent-hover: #d97706;
 --success: #10b981;
 --warning: #ef4444;
 
 /* Neutral palette */
 --gray-50: #f8fafc;
 --gray-100: #f1f5f9;
 --gray-200: #e2e8f0;
 --gray-300: #cbd5e1;
 --gray-400: #94a3b8;
 --gray-500: #64748b;
 --gray-600: #475569;
 --gray-700: #334155;
 --gray-800: #1e293b;
 --gray-900: #0f172a;
 
 /* Design tokens */
 --bg: #ffffff;
 --surface: var(--gray-50);
 --text-primary: var(--gray-900);
 --text-secondary: var(--gray-600);
 --text-muted: var(--gray-500);
 --border: var(--gray-200);
 
 /* Shadows */
 --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
 --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
 --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
 --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
 
 /* Typography */
 --font-size-xs: 0.75rem;
 --font-size-sm: 0.875rem;
 --font-size-base: 1rem;
 --font-size-lg: 1.125rem;
 --font-size-xl: 1.25rem;
 --font-size-2xl: 1.5rem;
 --font-size-3xl: 1.875rem;
 --font-size-4xl: 2.25rem;
 --font-size-5xl: 3rem;
 
 /* Spacing */
 --space-1: 0.25rem;
 --space-2: 0.5rem;
 --space-3: 0.75rem;
 --space-4: 1rem;
 --space-6: 1.5rem;
 --space-8: 2rem;
 --space-12: 3rem;
 --space-16: 4rem;
 
 /* Border radius */
 --radius-sm: 0.375rem;
 --radius: 0.5rem;
 --radius-lg: 0.75rem;
 --radius-xl: 1rem;
}

/* Base styles */
* {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

body {
 font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
 color: var(--text-primary);
 background: var(--bg);
 line-height: 1.6;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}

.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 var(--space-4);
}

@media (min-width: 640px) {
 .container { padding: 0 var(--space-6); }
}

/* Typography scale */
h1, h2, h3, h4, h5, h6 {
 font-weight: 700;
 line-height: 1.2;
 color: var(--text-primary);
 margin-bottom: var(--space-4);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }

@media (min-width: 768px) {
 h1 { font-size: var(--font-size-5xl); }
 h2 { font-size: var(--font-size-4xl); }
}

p {
 margin-bottom: var(--space-4);
 color: var(--text-secondary);
 line-height: 1.7;
}

/* Header */
.site-header {
 background: rgba(255, 255, 255, 0.95);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--border);
 position: sticky;
 top: 0;
 z-index: 50;
 transition: all 0.3s ease;
}

.header-inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: var(--space-4) 0;
 gap: var(--space-6);
}

.brand {
 display: flex;
 align-items: center;
 gap: var(--space-3);
 text-decoration: none;
 color: var(--text-primary);
 transition: opacity 0.2s ease;
}

.brand:hover {
 opacity: 0.8;
}

.brand img {
 height: 40px;
 width: auto;
}

.brand-name {
 font-weight: 700;
 font-size: var(--font-size-lg);
 color: var(--primary);
}

.main-nav {
 display: flex;
 gap: var(--space-6);
 align-items: center;
}

.main-nav a {
 color: var(--text-secondary);
 text-decoration: none;
 font-weight: 500;
 padding: var(--space-2) var(--space-3);
 border-radius: var(--radius);
 transition: all 0.2s ease;
 position: relative;
}

.main-nav a:hover,
.main-nav a:focus {
 color: var(--primary);
 background: var(--surface);
}

.main-nav a.active {
 color: var(--primary);
 font-weight: 600;
}

/* Event Hero Sections */
.event-hero {
 position: relative;
 min-height: 500px;
 display: flex;
 align-items: center;
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
 margin-bottom: var(--space-12);
 border-radius: var(--radius-xl);
 overflow: hidden;
}

.event-hero::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
 z-index: 1;
}

.event-hero-inner {
 position: relative;
 z-index: 2;
 max-width: 1200px;
 margin: 0 auto;
 padding: var(--space-12) var(--space-6);
 text-align: center;
 color: white;
}

.event-hero h1 {
 font-size: var(--font-size-4xl);
 font-weight: 800;
 margin-bottom: var(--space-6);
 text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
 color: white;
 line-height: 1.1;
}

@media (min-width: 768px) {
 .event-hero h1 {
   font-size: var(--font-size-5xl);
 }
}

.event-meta {
 font-size: var(--font-size-lg);
 font-weight: 600;
 margin-bottom: var(--space-8);
 color: var(--accent-light);
}

.event-cta {
 display: flex;
 gap: var(--space-4);
 justify-content: center;
 flex-wrap: wrap;
}

.event-cta .btn {
 padding: var(--space-4) var(--space-8);
 font-size: var(--font-size-lg);
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.5px;
 border-radius: var(--radius-lg);
 transition: all 0.3s ease;
 text-decoration: none;
 display: inline-block;
 min-width: 180px;
 text-align: center;
 box-shadow: var(--shadow-lg);
}

.event-cta .btn:first-child {
 background: var(--accent);
 color: white;
 border: 2px solid var(--accent);
}

.event-cta .btn:first-child:hover {
 background: var(--accent-hover);
 border-color: var(--accent-hover);
 transform: translateY(-2px);
 box-shadow: var(--shadow-xl);
}

.event-cta .btn.alt {
 background: transparent;
 color: white;
 border: 2px solid white;
}

.event-cta .btn.alt:hover {
 background: white;
 color: var(--primary);
 transform: translateY(-2px);
}

@media (max-width: 640px) {
 .event-hero {
   min-height: 400px;
 }
 
 .event-hero-inner {
   padding: var(--space-8) var(--space-4);
 }
 
 .event-hero h1 {
 font-size: var(--font-size-3xl);
 }
 
 .event-cta {
   flex-direction: column;
   align-items: center;
 }
 
 .event-cta .btn {
   min-width: 200px;
 }
}

/* Button system */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: var(--space-2);
 padding: var(--space-3) var(--space-6);
 font-weight: 600;
 font-size: var(--font-size-base);
 line-height: 1.5;
 text-decoration: none;
 border: none;
 border-radius: var(--radius-lg);
 cursor: pointer;
 transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
 position: relative;
 overflow: hidden;
}

.btn-primary {
 background: var(--accent);
 color: white;
 box-shadow: var(--shadow);
}

.btn-primary:hover {
 background: var(--accent-hover);
 transform: translateY(-1px);
 box-shadow: var(--shadow-lg);
}

.btn-secondary {
 background: transparent;
 color: var(--primary);
 border: 2px solid var(--primary);
}

.btn-secondary:hover {
 background: var(--primary);
 color: white;
 transform: translateY(-1px);
}

.btn-lg {
 padding: var(--space-4) var(--space-8);
 font-size: var(--font-size-lg);
 border-radius: var(--radius-xl);
}

.btn-xl {
 padding: var(--space-6) var(--space-12);
 font-size: var(--font-size-xl);
 border-radius: var(--radius-xl);
}

.btn-ghost {
 background: transparent;
 color: var(--text-secondary);
 border: 1px solid var(--border);
}

.btn-ghost:hover {
 background: var(--surface);
 border-color: var(--primary);
 color: var(--primary);
}

/* Enhanced Hero Section with Booking Focus */
.hero-booking-focus {
 background: linear-gradient(135deg, rgba(30, 64, 175, 0.03) 0%, rgba(248, 250, 252, 0.9) 100%);
 padding: var(--space-12) 0;
 margin-bottom: var(--space-16);
}

/* Events Focus Hero */
.hero-events-focus {
 background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(248, 250, 252, 0.95) 100%);
 padding: var(--space-12) 0;
 margin-bottom: var(--space-16);
}

/* Host Focus Hero */
.hero-host-focus {
 background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(248, 250, 252, 0.95) 100%);
 padding: var(--space-12) 0;
 margin-bottom: var(--space-16);
}

/* Contact Focus Hero */
.hero-contact-focus {
 background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(248, 250, 252, 0.95) 100%);
 padding: var(--space-12) 0;
 margin-bottom: var(--space-16);
}

/* Hero Badges */
.hero-badge-accent {
 display: inline-block;
 background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
 color: white;
 padding: var(--space-2) var(--space-4);
 border-radius: var(--radius-xl);
 font-size: var(--font-size-sm);
 font-weight: 700;
 margin-bottom: var(--space-6);
 box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.hero-badge-success {
 display: inline-block;
 background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
 color: white;
 padding: var(--space-2) var(--space-4);
 border-radius: var(--radius-xl);
 font-size: var(--font-size-sm);
 font-weight: 700;
 margin-bottom: var(--space-6);
 box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.hero-badge-contact {
 display: inline-block;
 background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
 color: white;
 padding: var(--space-2) var(--space-4);
 border-radius: var(--radius-xl);
 font-size: var(--font-size-sm);
 font-weight: 700;
 margin-bottom: var(--space-6);
 box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.hero-urgency-badge {
 display: inline-block;
 background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
 color: white;
 padding: var(--space-2) var(--space-4);
 border-radius: var(--radius-xl);
 font-size: var(--font-size-sm);
 font-weight: 700;
 margin-bottom: var(--space-6);
 animation: pulse 2s infinite;
 box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

@keyframes pulse {
 0%, 100% { transform: scale(1); }
 50% { transform: scale(1.05); }
}

.hero-lead {
 font-size: var(--font-size-xl);
 font-weight: 500;
 color: var(--text-secondary);
 margin-bottom: var(--space-8);
 line-height: 1.6;
}

@media (min-width: 768px) {
 .hero-lead {
   font-size: var(--font-size-2xl);
 }
}

/* Events Hero Quick Stats */
.hero-quick-stats {
 display: flex;
 gap: var(--space-6);
 margin-bottom: var(--space-8);
 justify-content: center;
 flex-wrap: wrap;
}

@media (max-width: 640px) {
 .hero-quick-stats {
   gap: var(--space-4);
 }
}

.quick-stat {
 text-align: center;
 padding: var(--space-3);
 background: rgba(255, 255, 255, 0.8);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-sm);
}

.stat-highlight {
 display: block;
 font-size: var(--font-size-2xl);
 font-weight: 800;
 color: var(--success);
 line-height: 1;
 margin-bottom: var(--space-1);
}

.stat-text {
 font-size: var(--font-size-sm);
 color: var(--text-muted);
 font-weight: 600;
}

/* Host Hero Platform Highlights */
.hero-platform-highlights {
 display: flex;
 gap: var(--space-4);
 margin-bottom: var(--space-8);
 flex-wrap: wrap;
}

@media (max-width: 640px) {
 .hero-platform-highlights {
   flex-direction: column;
   gap: var(--space-3);
 }
}

.platform-highlight {
 display: flex;
 align-items: center;
 gap: var(--space-3);
 background: rgba(255, 255, 255, 0.9);
 padding: var(--space-3) var(--space-4);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-sm);
 flex: 1;
 min-width: 200px;
}

.highlight-icon {
 font-size: var(--font-size-xl);
 flex-shrink: 0;
}

.highlight-content strong {
 display: block;
 color: var(--text-primary);
 font-weight: 700;
 margin-bottom: var(--space-1);
 font-size: var(--font-size-sm);
}

.highlight-content span {
 color: var(--text-muted);
 font-size: var(--font-size-xs);
}

/* Contact Hero Methods */
.hero-contact-methods {
 margin-bottom: var(--space-8);
}

.contact-method-card {
 background: rgba(255, 255, 255, 0.95);
 border: 2px solid var(--border);
 border-radius: var(--radius-lg);
 padding: var(--space-6);
 display: flex;
 align-items: center;
 gap: var(--space-4);
 box-shadow: var(--shadow);
 transition: all 0.3s ease;
}

.contact-method-card:hover {
 border-color: var(--primary);
 transform: translateY(-2px);
 box-shadow: var(--shadow-lg);
}

.method-icon {
 font-size: var(--font-size-3xl);
 flex-shrink: 0;
}

.method-content {
 flex: 1;
}

.method-content strong {
 display: block;
 color: var(--text-primary);
 font-weight: 700;
 margin-bottom: var(--space-1);
}

.method-content span {
 display: block;
 color: var(--primary);
 font-weight: 600;
 margin-bottom: var(--space-1);
}

.method-description {
 color: var(--text-muted);
 font-size: var(--font-size-sm);
}

.btn-method {
 background: var(--primary);
 color: white;
 padding: var(--space-3) var(--space-4);
 border-radius: var(--radius);
 text-decoration: none;
 font-weight: 600;
 transition: all 0.2s ease;
 flex-shrink: 0;
}

.btn-method:hover {
 background: var(--primary-dark);
 transform: translateY(-1px);
}

/* Hero Response Promise */
.hero-response-promise {
 display: flex;
 gap: var(--space-6);
 justify-content: center;
 margin-bottom: var(--space-8);
 flex-wrap: wrap;
}

@media (max-width: 640px) {
 .hero-response-promise {
   gap: var(--space-4);
 }
}

.promise-item {
 display: flex;
 align-items: center;
 gap: var(--space-2);
 padding: var(--space-2) var(--space-3);
 background: rgba(255, 255, 255, 0.8);
 border-radius: var(--radius);
 box-shadow: var(--shadow-sm);
}

.promise-icon {
 font-size: var(--font-size-lg);
}

.promise-text {
 font-size: var(--font-size-sm);
 font-weight: 600;
 color: var(--text-secondary);
}

/* Hero Image Highlights */
.hero-image-highlight {
 position: absolute;
 top: var(--space-4);
 right: var(--space-4);
 background: rgba(255, 255, 255, 0.95);
 backdrop-filter: blur(10px);
 padding: var(--space-4);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-xl);
 min-width: 200px;
}

.highlight-badge {
 display: flex;
 align-items: center;
 gap: var(--space-3);
}

.highlight-icon {
 font-size: var(--font-size-2xl);
}

.highlight-text strong {
 display: block;
 color: var(--text-primary);
 font-weight: 700;
 margin-bottom: var(--space-1);
}

.highlight-text span {
 color: var(--text-muted);
 font-size: var(--font-size-sm);
}

/* Smooth Scroll for Hero Buttons */
.hero-scroll-btn {
 scroll-behavior: smooth;
}

/* Contact Process Steps */
.process-steps {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: var(--space-6);
 margin-top: var(--space-8);
}

@media (min-width: 768px) {
 .process-steps {
   grid-template-columns: repeat(4, 1fr);
 }
}

.process-step {
 text-align: center;
 padding: var(--space-6);
 background: var(--surface);
 border-radius: var(--radius-lg);
 position: relative;
}

.step-number {
 width: 50px;
 height: 50px;
 background: var(--primary);
 color: white;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: var(--font-size-xl);
 font-weight: 800;
 margin: 0 auto var(--space-4);
}

.step-content h4 {
 color: var(--text-primary);
 margin-bottom: var(--space-2);
}

.step-content p {
 color: var(--text-secondary);
 font-size: var(--font-size-sm);
 line-height: 1.6;
}

.hero-featured-events {
 display: flex;
 flex-direction: column;
 gap: var(--space-4);
 margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
 .hero-featured-events {
   flex-direction: row;
   justify-content: space-between;
 }
}

.featured-event-quick {
 background: white;
 border: 2px solid var(--border);
 border-radius: var(--radius-lg);
 padding: var(--space-4);
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: var(--space-4);
 transition: all 0.3s ease;
 box-shadow: var(--shadow-sm);
 flex: 1;
}

.featured-event-quick:hover {
 border-color: var(--primary);
 box-shadow: var(--shadow-lg);
 transform: translateY(-2px);
}

.event-highlight {
 display: flex;
 align-items: center;
 gap: var(--space-3);
 flex: 1;
}

.event-badge-small {
 padding: var(--space-1) var(--space-2);
 border-radius: var(--radius);
 font-size: var(--font-size-xs);
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.05em;
 flex-shrink: 0;
}

.event-badge-small.featured {
 background: var(--accent);
 color: white;
}

.event-badge-small.new {
 background: var(--success);
 color: white;
}

.event-badge-small.free {
 background: var(--primary);
 color: white;
}

.event-details strong {
 display: block;
 color: var(--text-primary);
 font-weight: 700;
 margin-bottom: var(--space-1);
}

.event-details span {
 color: var(--text-muted);
 font-size: var(--font-size-sm);
}

.btn-quick-book {
 background: var(--accent);
 color: white;
 padding: var(--space-2) var(--space-4);
 border-radius: var(--radius);
 text-decoration: none;
 font-weight: 600;
 font-size: var(--font-size-sm);
 transition: all 0.2s ease;
 flex-shrink: 0;
 white-space: nowrap;
}

.btn-quick-book:hover {
 background: var(--accent-hover);
 transform: translateX(2px);
}

.hero-cta-primary {
 text-align: center;
 margin-bottom: var(--space-8);
}

.hero-main-cta {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: var(--space-1);
 margin-bottom: var(--space-6);
 position: relative;
 overflow: hidden;
}

.hero-main-cta::before {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
 transition: left 0.6s;
}

.hero-main-cta:hover::before {
 left: 100%;
}

.cta-text {
 font-size: var(--font-size-xl);
 font-weight: 700;
}

.cta-subtext {
 font-size: var(--font-size-sm);
 opacity: 0.9;
}

.hero-cta-secondary {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: var(--space-4);
}

@media (min-width: 640px) {
 .hero-cta-secondary {
   flex-direction: row;
   justify-content: center;
 }
}

.trust-indicators {
 display: flex;
 flex-direction: column;
 gap: var(--space-1);
 font-size: var(--font-size-sm);
 color: var(--text-muted);
 text-align: center;
}

@media (min-width: 640px) {
 .trust-indicators {
   flex-direction: row;
gap: var(--space-6);
 }
}

.hero-image {
 position: relative;
}

.hero-image-overlay {
 position: absolute;
 bottom: var(--space-4);
 right: var(--space-4);
 background: rgba(255, 255, 255, 0.95);
 backdrop-filter: blur(10px);
 padding: var(--space-4);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-xl);
 text-align: center;
 min-width: 180px;
}

.success-metric .metric-number {
 font-size: var(--font-size-3xl);
 font-weight: 800;
 color: var(--success);
 display: block;
 line-height: 1;
}

.success-metric .metric-text {
 font-size: var(--font-size-sm);
 color: var(--text-secondary);
 font-weight: 600;
 margin-top: var(--space-1);
}

/* Hero section */
.hero-banner {
 background: linear-gradient(135deg, var(--surface) 0%, rgba(30, 64, 175, 0.05) 100%);
 padding: var(--space-16) 0;
 margin-bottom: var(--space-16);
}

.hero-content {
 display: grid;
 grid-template-columns: 1fr;
 gap: var(--space-8);
 align-items: center;
}

@media (min-width: 1024px) {
 .hero-content {
grid-template-columns: 1fr 1fr;
   gap: var(--space-12);
 }
}

.hero-text h1 {
 font-size: var(--font-size-4xl);
 font-weight: 800;
 line-height: 1.1;
 margin-bottom: var(--space-6);
 background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

@media (min-width: 768px) {
 .hero-text h1 {
 font-size: var(--font-size-5xl);
 }
}

.hero-text p {
 font-size: var(--font-size-lg);
 color: var(--text-secondary);
 margin-bottom: var(--space-8);
 line-height: 1.7;
}

.hero-cta {
 display: flex;
 gap: var(--space-4);
 flex-wrap: wrap;
}

.hero-image img {
 width: 100%;
 height: auto;
 border-radius: var(--radius-xl);
 box-shadow: var(--shadow-xl);
 object-fit: cover;
}

/* Statistics/metrics section */
.stats-section {
 background: var(--primary);
 color: white;
 padding: var(--space-12) 0;
 margin: var(--space-16) 0;
}

.stats-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: var(--space-8);
 text-align: center;
}

.stat-item h3 {
 font-size: var(--font-size-3xl);
 font-weight: 800;
 color: var(--accent-light);
 margin-bottom: var(--space-2);
}

.stat-item p {
 color: rgba(255, 255, 255, 0.9);
 font-weight: 500;
}

/* Events grid */
.events-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
 gap: var(--space-8);
 margin-top: var(--space-8);
}

.event-card {
 background: white;
 border-radius: var(--radius-xl);
 overflow: hidden;
 box-shadow: var(--shadow);
 transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 position: relative;
}

.event-card:hover {
 transform: translateY(-4px);
 box-shadow: var(--shadow-xl);
}

.event-card-image {
 position: relative;
 overflow: hidden;
 height: 200px;
}

.event-card img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.3s ease;
}

.event-card:hover img {
 transform: scale(1.05);
}

.event-badge {
 position: absolute;
 top: var(--space-3);
 left: var(--space-3);
 background: var(--accent);
 color: white;
 padding: var(--space-1) var(--space-3);
 border-radius: var(--radius);
 font-size: var(--font-size-xs);
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 0.05em;
}

.event-card-content {
 padding: var(--space-6);
}

.event-card h3 {
 font-size: var(--font-size-xl);
 font-weight: 700;
 margin-bottom: var(--space-3);
 line-height: 1.3;
}

.event-card p {
 color: var(--text-secondary);
 margin-bottom: var(--space-4);
 line-height: 1.6;
}

.event-meta {
 display: flex;
 align-items: center;
 gap: var(--space-4);
 margin-bottom: var(--space-4);
 font-size: var(--font-size-sm);
}

.event-meta-item {
 display: flex;
 align-items: center;
 gap: var(--space-1);
}

/* Content sections for event pages */
.content-section {
 margin-bottom: var(--space-16);
}

.content-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: var(--space-8);
 align-items: start;
}

@media (min-width: 1024px) {
 .content-grid {
   grid-template-columns: 2fr 1fr;
 }
}

.content-main h2 {
 color: var(--primary);
 margin-top: var(--space-8);
 margin-bottom: var(--space-4);
 font-size: var(--font-size-2xl);
}

.content-main h3 {
 color: var(--primary-dark);
 margin-top: var(--space-6);
 margin-bottom: var(--space-3);
}

.content-sidebar {
 background: var(--surface);
 padding: var(--space-6);
 border-radius: var(--radius-xl);
 height: fit-content;
 position: sticky;
 top: calc(var(--space-16) + 60px);
}

.highlight-box {
 background: linear-gradient(135deg, var(--surface) 0%, rgba(248, 250, 252, 0.95) 100%);
 border: 1px solid var(--border);
 color: var(--text-primary);
 padding: var(--space-6);
 border-radius: var(--radius-lg);
 margin: var(--space-8) 0;
 text-align: center;
 box-shadow: var(--shadow);
}

.highlight-box h3 {
 color: var(--text-primary);
 margin-bottom: var(--space-3);
 font-weight: 700;
}

.highlight-box p {
 color: var(--text-secondary);
 margin-bottom: var(--space-4);
 line-height: 1.6;
}

/* Ensure benefit items inside highlight-box have proper text contrast */
.highlight-box .benefit-item {
 background: rgba(255, 255, 255, 0.7);
 border: 1px solid rgba(203, 213, 225, 0.5);
}

.highlight-box .benefit-item div {
 color: var(--text-primary);
}

.speakers-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: var(--space-6);
 margin: var(--space-8) 0;
}

.speaker-card {
 background: white;
 padding: var(--space-6);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow);
 text-align: center;
 transition: transform 0.2s ease;
}

.speaker-card:hover {
 transform: translateY(-2px);
}

.speaker-avatar {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 background: var(--surface);
 margin: 0 auto var(--space-4);
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: var(--font-size-2xl);
 font-weight: bold;
 color: var(--primary);
 overflow: hidden;
 position: relative;
}

/* Style images inside speaker-avatar as rounded profile pictures */
.speaker-avatar img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 border-radius: 50%;
 position: absolute;
 top: 0;
 left: 0;
}

.benefits-list {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: var(--space-4);
 margin: var(--space-6) 0;
}

.benefit-item {
 display: flex;
 align-items: flex-start;
 gap: var(--space-3);
 padding: var(--space-4);
 background: var(--surface);
 border-radius: var(--radius);
}

.benefit-icon {
 flex-shrink: 0;
 width: 24px;
 height: 24px;
 background: var(--primary);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: white;
 font-weight: bold;
}

/* Call to action sections - Original style (for other CTAs) */
.cta-section {
 background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
 color: white;
 padding: var(--space-16) 0;
 text-align: center;
 margin: var(--space-16) 0;
 border-radius: var(--radius-xl);
}

.cta-section h2 {
 color: white;
 margin-bottom: var(--space-4);
}

.cta-section p {
 font-size: var(--font-size-lg);
 color: rgba(255, 255, 255, 0.9);
 margin-bottom: var(--space-8);
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
}

/* Enhanced CTA Section - New modern design with columns */
.cta-section-enhanced {
 background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 border-radius: var(--radius-xl);
 padding: var(--space-12) var(--space-6);
 margin: var(--space-16) 0;
 position: relative;
 overflow: hidden;
}

.cta-section-enhanced::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
  radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
 pointer-events: none;
}

.cta-content-wrapper {
 position: relative;
 z-index: 2;
 max-width: 1000px;
 margin: 0 auto;
}

.cta-header-center {
 text-align: center;
 margin-bottom: var(--space-12);
}

.cta-header-center h2 {
 color: white;
 font-size: var(--font-size-3xl);
 font-weight: 800;
 margin-bottom: var(--space-4);
 line-height: 1.2;
}

@media (min-width: 768px) {
 .cta-header-center h2 {
   font-size: var(--font-size-4xl);
 }
}

.cta-header-center p {
 color: rgba(255, 255, 255, 0.9);
 font-size: var(--font-size-lg);
 line-height: 1.6;
 max-width: 700px;
 margin: 0 auto;
}

/* Features Grid */
.cta-features-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: var(--space-8);
 margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
 .cta-features-grid {
grid-template-columns: 1fr 1fr;
   gap: var(--space-12);
 }
}

.cta-features-column h3 {
 color: white;
 font-size: var(--font-size-xl);
 font-weight: 700;
 margin-bottom: var(--space-6);
 text-align: center;
}

.cta-feature-list {
 display: flex;
 flex-direction: column;
 gap: var(--space-4);
}

.cta-feature-item {
 display: flex;
 align-items: flex-start;
 gap: var(--space-4);
 padding: var(--space-4);
 background: rgba(255, 255, 255, 0.1);
 border-radius: var(--radius-lg);
 backdrop-filter: blur(10px);
 border: 1px solid rgba(255, 255, 255, 0.2);
 transition: all 0.3s ease;
}

.cta-feature-item:hover {
 background: rgba(255, 255, 255, 0.15);
 border-color: rgba(255, 255, 255, 0.3);
 transform: translateY(-2px);
}

.feature-emoji {
 font-size: var(--font-size-2xl);
 line-height: 1;
 flex-shrink: 0;
}

.feature-content {
 flex: 1;
}

.feature-content strong {
 display: block;
 color: white;
 font-weight: 600;
 margin-bottom: var(--space-1);
 font-size: var(--font-size-base);
}

.feature-content span {
 color: rgba(255, 255, 255, 0.8);
 font-size: var(--font-size-sm);
 line-height: 1.5;
}

/* Bottom Section */
.cta-bottom-section {
 display: grid;
 grid-template-columns: 1fr;
 gap: var(--space-8);
 align-items: center;
}

@media (min-width: 768px) {
 .cta-bottom-section {
   grid-template-columns: 1fr auto;
   gap: var(--space-12);
 }
}

.cta-actions-enhanced {
 display: flex;
 flex-direction: column;
 gap: var(--space-4);
 justify-content: center;
}

@media (min-width: 480px) {
 .cta-actions-enhanced {
   flex-direction: row;
 gap: var(--space-6);
 }
}

.btn-cta {
 display: inline-flex;
 align-items: center;
 justify-content: space-between;
 padding: var(--space-4) var(--space-6);
 border-radius: var(--radius-xl);
 text-decoration: none;
 font-weight: 700;
 font-size: var(--font-size-lg);
 transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 position: relative;
 overflow: hidden;
 min-width: 200px;
 text-align: left;
}

.btn-cta::before {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
 transition: left 0.5s;
}

.btn-cta:hover::before {
 left: 100%;
}

.btn-cta-primary {
 background: rgba(255, 255, 255, 0.15);
 color: white;
 border: 2px solid rgba(255, 255, 255, 0.3);
 backdrop-filter: blur(10px);
}

.btn-cta-primary:hover {
 background: rgba(255, 255, 255, 0.25);
 border-color: rgba(255, 255, 255, 0.5);
 transform: translateY(-2px);
 box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
 background: rgba(255, 255, 255, 0.9);
 color: var(--primary);
 border: 2px solid transparent;
}

.btn-cta-secondary:hover {
 background: white;
 transform: translateY(-2px);
 box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-text {
 flex: 1;
}

.btn-icon {
 font-size: var(--font-size-xl);
 margin-left: var(--space-3);
 transition: transform 0.3s ease;
}

.btn-cta:hover .btn-icon {
 transform: translateX(4px);
}

/* Stats Enhanced */
.cta-stats-enhanced {
 display: flex;
 gap: var(--space-6);
 justify-content: center;
}

@media (max-width: 767px) {
 .cta-stats-enhanced {
   margin-top: var(--space-4);
 }
}

.cta-stat {
 text-align: center;
 color: white;
}

.stat-number {
 display: block;
 font-size: var(--font-size-2xl);
 font-weight: 800;
 color: var(--accent-light);
 margin-bottom: var(--space-1);
}

.stat-label {
 font-size: var(--font-size-xs);
 color: rgba(255, 255, 255, 0.8);
 font-weight: 500;
 text-transform: uppercase;
 letter-spacing: 0.05em;
}

@media (max-width: 640px) {
 .cta-section-enhanced {
   padding: var(--space-8) var(--space-4);
 }
 
 .cta-header-center h2 {
   font-size: var(--font-size-2xl);
 }
 
 .cta-features-grid {
   gap: var(--space-6);
 }
 
 .cta-bottom-section {
   grid-template-columns: 1fr;
   text-align: center;
 }
 
 .cta-actions-enhanced {
   flex-direction: column;
align-items: center;
 }
 
 .btn-cta {
 width: 100%;
   max-width: 280px;
   justify-content: center;
   text-align: center;
 }
 
 .cta-stats-enhanced {
   margin-top: var(--space-6);
 }
 
 /* Mobile adjustments for hero booking focus */
 .hero-featured-events {
   gap: var(--space-3);
 }
 
 .featured-event-quick {
   flex-direction: column;
   text-align: center;
   gap: var(--space-3);
 }
 
 .event-highlight {
   justify-content: center;
   text-align: center;
 }
 
 .hero-urgency-badge {
 font-size: var(--font-size-xs);
   margin-bottom: var(--space-4);
 }
 
 .hero-image-overlay,
 .hero-image-highlight {
   position: relative;
   margin-top: var(--space-4);
   bottom: auto;
   right: auto;
   top: auto;
   left: auto;
 }

 .contact-method-card {
   flex-direction: column;
   text-align: center;
 }
 
 .platform-highlight {
   min-width: auto;
 }
}

/* Features grid */
.features-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: var(--space-8);
 margin-top: var(--space-8);
}

.feature-card {
 background: white;
 padding: var(--space-6);
 border-radius: var(--radius-lg);
 border: 1px solid var(--border);
 transition: all 0.2s ease;
 text-align: center;
}

.feature-card:hover {
 transform: translateY(-2px);
 box-shadow: var(--shadow-lg);
 border-color: var(--primary);
}

.feature-icon {
 width: 60px;
 height: 60px;
 background: var(--surface);
 border-radius: var(--radius-lg);
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto var(--space-4);
 font-size: var(--font-size-2xl);
}

.feature-card h4 {
 margin-bottom: var(--space-3);
 color: var(--text-primary);
}

/* Footer */
.site-footer {
 background: var(--gray-900);
 color: var(--gray-300);
 padding: var(--space-16) 0 var(--space-8);
 margin-top: var(--space-16);
}

.footer-inner {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: var(--space-8);
 margin-bottom: var(--space-8);
}

.footer-brand img {
 height: 100px;
 margin-bottom: var(--space-4);
}

.footer-brand h4 {
 color: white;
 margin-bottom: var(--space-3);
}

.footer-links a {
 color: var(--gray-400);
 text-decoration: none;
 display: block;
 margin-bottom: var(--space-2);
 transition: color 0.2s ease;
}

.footer-links a:hover {
 color: white;
}

.footer-bottom {
 border-top: 1px solid var(--gray-800);
 padding-top: var(--space-8);
 text-align: center;
 color: var(--gray-500);
}

/* Specific styling for hayman.dev link in footer */
.footer-bottom a[href="https://hayman.dev"] {
 color: var(--gray-500);
 text-decoration: underline;
 transition: color 0.2s ease;
}

.footer-bottom a[href="https://hayman.dev"]:hover {
 color: var(--gray-300);
 text-decoration: underline;
}

/* Utility classes */
.text-center { text-align: center; }
.text-lg { font-size: var(--font-size-lg); }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-8 { margin-top: var(--space-8); }
.mt-16 { margin-top: var(--space-16); }

/* Responsive design */
@media (max-width: 768px) {
 .main-nav {
   display: none;
 }
 
 .hero-banner {
   padding: var(--space-12) 0;
 }
 
 .hero-text h1 {
   font-size: var(--font-size-3xl);
 }
 
 .hero-cta {
flex-direction: column;
 }
 
 .btn-lg {
   padding: var(--space-3) var(--space-6);
 }
 
 .content-grid {
   grid-template-columns: 1fr;
 }
 
 .content-sidebar {
 position: static;
 order: -1;
 }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
 * {
   animation-duration: 0.01ms !important;
   animation-iteration-count: 1 !important;
   transition-duration: 0.01ms !important;
 }
}

:focus-visible {
 outline: 2px solid var(--accent);
 outline-offset: 2px;
}

/* Loading states */
.loading {
 opacity: 0.7;
 pointer-events: none;
}

.skeleton {
 background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
 background-size: 200% 100%;
 animation: loading 1.5s infinite;
}

@keyframes loading {
 0% { background-position: 200% 0; }
 100% { background-position: -200% 0; }
}