/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8fafc;
  color: #0f172a;
  overflow-x: hidden;
  padding-top: 45px; /* Space for fixed offer bar */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========== OFFER BAR ========== */
#offerBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ff4757;
  color: #fff;
  padding: 12px;
  text-align: center;
  z-index: 9999;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  animation: slideDown 0.5s ease;
}

@media (min-width: 768px) {
  #offerBar { font-size: 16px; }
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* ========== POPUP STYLES ========== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.popup-container {
  position: relative;
  width: 90%;
  max-width: 500px;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s ease;
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #64748b;
  z-index: 10;
  transition: color 0.2s;
}

.popup-close:hover { color: #dc2626; }
.popup-content { padding: 1.5rem; }

@media (min-width: 640px) {
  .popup-content { padding: 2rem; }
}

.popup-icon { text-align: center; margin-bottom: 1rem; }
.popup-icon i { font-size: 3rem; background: linear-gradient(135deg, #25d366, #128c7e); -webkit-background-clip: text; background-clip: text; color: transparent; }
.popup-title { font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 0.75rem; color: #0f172a; }
.popup-description { text-align: center; color: #475569; margin-bottom: 1.5rem; line-height: 1.5; font-size: 0.9rem; }

.popup-form { display: flex; flex-direction: column; gap: 1rem; }
.popup-form-group { position: relative; display: flex; align-items: center; }
.popup-form-group i { position: absolute; left: 15px; color: #94a3b8; font-size: 1rem; z-index: 1; }
.popup-form-group input { width: 100%; padding: 12px 15px 12px 45px; border: 2px solid #e2e8f0; border-radius: 12px; font-size: 0.95rem; transition: all 0.2s; font-family: inherit; }
.popup-form-group input:focus { outline: none; border-color: #25d366; box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1); }
.popup-submit-btn { background: linear-gradient(135deg, #25d366, #128c7e); color: white; border: none; padding: 14px; border-radius: 12px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; width: 100%; }
.popup-note { text-align: center; font-size: 0.75rem; color: #64748b; margin-top: 1rem; }
.hidden { display: none !important; }

/* ========== HERO SECTION ========== */
.hero { background-color: #ffffff; padding: 4rem 1.5rem 3rem; border-bottom: 1px solid #e2e8f0; text-align: center; }
.hero-container { max-width: 1024px; margin: 0 auto; }
.hero-topline { display: inline-block; border: 2px solid red; padding: 6px 15px; border-radius: 6px; font-weight: bold; background: #fff; font-size: 0.85rem; }
.hero-title { font-size: 2rem; font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; color: #0f172a; }
.hero-highlight { color: #25d366; }
.hero-description { font-size: 1rem; color: #475569; max-width: 768px; margin: 0 auto 1.5rem; line-height: 1.5; }
.hero h2 { font-size: 1.1rem; color: #1e293b; font-weight: 600; padding: 0 10px; }

.event-details { background-color: #f8fafc; padding: 1.25rem; border-radius: 1rem; display: inline-block; margin-bottom: 2.5rem; border: 1px solid #f1f5f9; box-shadow: 0 1px 2px rgba(0,0,0,0.05); width: 100%; max-width: 600px; }
.event-list { display: flex; flex-direction: column; gap: 1rem; justify-content: center; font-weight: 600; color: #334155; }
.event-item { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.9rem; }
.event-item i { color: #25d366; font-size: 1.125rem; }

.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
.btn { display: inline-block; font-weight: 700; padding: 1rem 2rem; border-radius: 9999px; text-align: center; transition: all 0.2s ease; font-size: 1rem; cursor: pointer; border: none; }
.btn-primary { background-color: #25d366; color: white; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.btn-primary:hover { background-color: #1da851; transform: translateY(-2px); }

@media (min-width: 768px) {
  .hero { padding: 6rem 1.5rem 5rem; }
  .hero-topline { font-size: 1rem; }
  .hero-title { font-size: 3rem; }
  .hero-description { font-size: 1.25rem; }
  .hero h2 { font-size: 1.5rem; }
  .event-list { flex-direction: row; gap: 2rem; }
  .event-item { font-size: 1rem; }
  .cta-buttons { flex-direction: row; }
}

@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }

/* SPEAKER SECTION */
.speaker-wrapper { display: flex; flex-direction: column; align-items: center; gap: 30px; max-width: 1200px; margin: auto; text-align: center; }
.speaker-left { width: 100%; display: flex; justify-content: center; }
.speaker-left img { width: 100%; max-width: 400px; border-radius: 20px; box-shadow: 0 20px 30px -12px rgba(0,0,0,0.2); }
.speaker-right { width: 100%; padding: 0 1rem; }
.speaker-name { font-size: 24px; font-weight: 800; margin-top: 15px; }
.speaker-role { color: #555; margin: 8px 0 15px; font-size: 0.95rem; }
.speaker-tags { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.speaker-tags span { background: #e5e7eb; padding: 6px 14px; border-radius: 20px; font-size: 12px; }
.topic-heading { margin-top: 25px; margin-bottom: 15px; font-size: 20px; }
.topics-list { list-style: none; text-align: left; max-width: 400px; margin: 0 auto; }
.topics-list li { margin-bottom: 10px; font-size: 14px; line-height: 1.4; display: flex; gap: 8px; }
.topics-list i { color: #25D366; margin-top: 3px; }
.live-badge { margin-top: 20px; background: #e6f9ee; padding: 12px; border-radius: 10px; color: #15803d; font-weight: 600; font-size: 0.9rem; }

@media (min-width: 768px) {
  .speaker-wrapper { flex-direction: row; text-align: left; gap: 60px; }
  .speaker-left, .speaker-right { flex: 1; }
  .speaker-name { font-size: 28px; }
  .speaker-tags { justify-content: flex-start; }
  .topics-list { margin: 0; }
}

/* ========== WHY SECTION ========== */
.why-section { background-color: #0f172a; color: white; padding: 4rem 1.5rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; }
.section-subtitle { color: #94a3b8; max-width: 672px; margin: 0 auto; font-size: 1rem; }
.highlight { color: #25d366; }

.why-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.stats-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.stat-card { background-color: rgba(30, 41, 59, 0.8); padding: 1.5rem; border-radius: 1rem; border: 1px solid #334155; text-align: center; backdrop-filter: blur(4px); }
.stat-card-wide { display: flex; align-items: center; gap: 1rem; justify-content: center; flex-direction: column; text-align: center; }

.stat-number { font-size: 2rem; font-weight: 800; color: #25d366; }
.stat-label { color: #94a3b8; font-size: 0.875rem; margin-top: 0.5rem; }
.stat-highlight { font-size: 1.25rem; font-weight: 700; }
.stat-muted { color: #94a3b8; font-size: 0.9rem; }

.trust-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.trust-title i { color: #25d366; }
.trust-list ul { display: flex; flex-direction: column; gap: 1rem; color: #cbd5e1; }
.trust-list li { display: flex; align-items: center; font-size: 1rem; gap: 0.75rem; }
.trust-list li i { width: 1.5rem; color: #25d366; text-align: center; }

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card-wide { grid-column: span 2; flex-direction: row; text-align: left; }
}
@media (min-width: 768px) {
  .why-section { padding: 5rem 1.5rem; }
  .section-title { font-size: 2.25rem; }
  .section-subtitle { font-size: 1.125rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .trust-title { font-size: 1.5rem; }
}

/* ========== REASONS SECTION ========== */
.reasons-section { background-color: white; padding: 4rem 1.5rem; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.reason-container { display: flex; flex-direction: column; gap: 3rem; align-items: center; }
.reason-image { width: 100%; max-width: 500px; margin: 0 auto; }
.image-wrapper { position: relative; }
.image-wrapper::before { content: ''; position: absolute; inset: -0.5rem; background-color: #eff6ff; border-radius: 1.5rem; transform: rotate(-3deg); z-index: 0; }
.image-wrapper img { position: relative; z-index: 10; border-radius: 1rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); width: 100%; height: auto; object-fit: cover; }

.reason-content { width: 100%; }
.reason-eyebrow { color: #3b82f6; font-weight: 700; font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.75rem; text-align: center; }
.reason-title { font-size: 1.75rem; font-weight: 800; color: #1e1e1e; line-height: 1.2; margin-bottom: 2rem; text-align: center; }
.reasons-list { display: flex; flex-direction: column; gap: 1.5rem; }
.reason-item { display: flex; gap: 1rem; align-items: flex-start; }
.reason-icon { width: 3rem; height: 3rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: white; flex-shrink: 0; }
.reason-icon.icon-orange { background-color: #e0643d; }
.reason-icon.icon-blue { background-color: #345ce2; }
.reason-icon.icon-pink { background-color: #dc5c8f; }
.reason-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.reason-item p { color: #4b5563; line-height: 1.5; font-size: 0.95rem; }

@media (min-width: 768px) {
  .reason-eyebrow, .reason-title { text-align: left; }
  .reason-icon { width: 4rem; height: 4rem; font-size: 1.5rem; }
  .reason-item h3 { font-size: 1.25rem; }
}
@media (min-width: 1024px) {
  .reasons-section { padding: 5rem 1.5rem; }
  .reason-container { flex-direction: row; gap: 4rem; }
  .reason-image, .reason-content { flex: 1; }
  .image-wrapper::before { inset: -1rem; }
  .reason-title { font-size: 2.75rem; }
}

/* ========== DEMO SECTION ========== */
.demo-section { background: linear-gradient(to bottom right, #f0fdf4, #eff6ff); padding: 4rem 1.5rem; }
.demo-container { max-width: 1152px; margin: 0 auto; display: flex; flex-direction: column; gap: 3rem; align-items: center; }
.demo-text { width: 100%; text-align: center; }
.demo-title { font-size: 1.75rem; font-weight: 700; color: #111827; margin-bottom: 1rem; }
.demo-highlight { color: #25d366; }
.demo-description { font-size: 1rem; color: #4b5563; margin-bottom: 2rem; line-height: 1.5; }
.demo-features { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
.feature { background-color: white; padding: 0.75rem 1rem; border-radius: 0.5rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05); display: inline-flex; align-items: center; gap: 0.75rem; color: #374151; font-size: 0.9rem; width: 100%; max-width: 300px; justify-content: center; }
.feature i { color: #25d366; font-size: 1.1rem; }

.chat-wrapper { width: 100%; display: flex; justify-content: center; }
.phone-mockup { max-width: 350px; width: 100%; background-color: white; border-radius: 1.5rem; box-shadow: 0 15px 30px -10px rgba(0,0,0,0.2); border: 1px solid #e2e8f0; overflow: hidden; display: flex; flex-direction: column; height: 500px; }
.chat-header { background-color: #075e54; color: white; padding: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.chat-header img { width: 2.25rem; height: 2.25rem; border-radius: 50%; background-color: white; padding: 0.15rem; object-fit: contain; }
.chat-header h3 { font-weight: 700; line-height: 1.2; font-size: 0.95rem; }
.chat-header p { font-size: 0.75rem; color: #bbf7d0; }

.chat-log { flex: 1; background-color: #efeae2; padding: 1rem; overflow-y: auto; display: flex; flex-direction: column; gap: 1rem; }
.chat-message { display: flex; }
.chat-message.bot { justify-content: flex-start; }
.chat-message.user { justify-content: flex-end; }
.chat-bubble-left { background: white; border-radius: 18px 18px 18px 4px; padding: 0.75rem; font-size: 0.85rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05); max-width: 90%; }
.chat-bubble-right { background: #dcf8c5; border-radius: 18px 18px 4px 18px; padding: 0.75rem; font-size: 0.85rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05); max-width: 90%; }
.timestamp { font-size: 0.65rem; color: #9ca3af; display: block; text-align: right; margin-top: 0.25rem; }

.chat-input-area { background-color: #f3f4f6; padding: 0.75rem; border-top: 1px solid #e5e7eb; }
.quick-replies { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.quick-reply { background-color: white; border: 1px solid #128c7e; color: #128c7e; font-size: 0.75rem; padding: 0.35rem 0.6rem; border-radius: 20px; cursor: pointer; }
.message-input { display: flex; background-color: white; border-radius: 20px; border: 1px solid #e2e8f0; padding: 0.25rem; align-items: center; }
.message-input input { flex: 1; background: transparent; border: none; padding: 0.4rem 0.8rem; outline: none; font-size: 0.85rem; }
.message-input button { background-color: #128c7e; color: white; width: 2rem; height: 2rem; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; }

@media (min-width: 1024px) {
  .demo-section { padding: 6rem 1.5rem; }
  .demo-container { flex-direction: row; }
  .demo-text { flex: 1; text-align: left; }
  .demo-title { font-size: 3rem; }
  .demo-description { font-size: 1.15rem; }
  .demo-features { align-items: flex-start; }
  .feature { max-width: none; justify-content: flex-start; padding: 1rem; font-size: 1rem; border-radius: 0.75rem; }
  .chat-wrapper { flex: 1; justify-content: flex-end; }
  .phone-mockup { height: 600px; border-radius: 2rem; }
}

/* ========== SERVICES SECTION ========== */
.services-section { background-color: #f9fafb; padding: 4rem 1.5rem; text-align: center; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; text-align: left; }
.service-card { background-color: white; padding: 1.5rem; border-radius: 1rem; border: 1px solid #f1f5f9; transition: all 0.3s ease; }
.service-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1rem; }

.service-icon.green { background-color: #dcfce7; color: #25d366; }
.service-icon.blue { background-color: #dbeafe; color: #3b82f6; }
.service-icon.purple { background-color: #ede9fe; color: #8b5cf6; }
.service-icon.orange { background-color: #fff7ed; color: #f97316; }
.service-icon.pink { background-color: #fce7f3; color: #ec489a; }
.service-icon.teal { background-color: #ccfbf1; color: #14b8a6; }

.service-card:hover { background-color: #25d366; transform: translateY(-5px); }
.service-card:hover .service-icon { background-color: white; color: #25d366; }
.service-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-description { color: #4b5563; font-size: 0.9rem; }
.service-card:hover .service-title, .service-card:hover .service-description { color: white; }

@media (min-width: 768px) {
  .services-section { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
  .service-card { padding: 2rem; }
  .service-icon { width: 3rem; height: 3rem; font-size: 1.5rem; border-radius: 0.75rem; margin-bottom: 1.5rem; }
  .service-title { font-size: 1.25rem; margin-bottom: 0.75rem; }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========== AUDIENCE SECTION ========== */
.audience-section { background-color: #0f172a; padding: 4rem 1.5rem; text-align: center; }
.audience-section .section-title, .audience-section .section-subtitle { color: white; }
.audience-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.badge { background-color: rgba(30, 41, 59, 0.9); padding: 0.5rem 1rem; border-radius: 9999px; border: 1px solid #334155; font-weight: 600; color: white; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; }
.badge i { color: #25d366; }

@media (min-width: 768px) {
  .audience-section { padding: 5rem 1.5rem; }
  .audience-badges { gap: 1rem; margin-top: 3rem; }
  .badge { padding: 0.75rem 1.25rem; font-size: 1rem; }
}

/* ========== TESTIMONIALS ========== */
.testimonials-section { background-color: #f9fafb; padding: 4rem 1.5rem; text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; text-align: left; }
.testimonial-card { background-color: white; padding: 1.5rem; border-radius: 1rem; border: 1px solid #f1f5f9; position: relative; }
.quote-icon { position: absolute; top: 1rem; right: 1rem; font-size: 1.5rem; color: #bfdbfe; opacity: 0.5; }
.stars { color: #fbbf24; font-size: 0.85rem; margin-bottom: 1rem; }
.testimonial-card p { color: #4b5563; margin-bottom: 1.5rem; line-height: 1.5; font-size: 0.95rem; }
.author { display: flex; align-items: center; gap: 0.75rem; }
.avatar { width: 2.25rem; height: 2.25rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.avatar.S { background-color: #ede9fe; color: #7c3aed; }
.avatar.M { background-color: #dbeafe; color: #2563eb; }
.avatar.R { background-color: #ffedd5; color: #f97316; }
.author div strong { display: block; font-weight: 700; font-size: 0.85rem; color: #111827; }
.author div span { font-size: 0.75rem; color: #6b7280; }

@media (min-width: 768px) {
  .testimonials-section { padding: 5rem 1.5rem; }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
  .testimonial-card { padding: 2rem; }
  .quote-icon { top: 1rem; right: 1.5rem; font-size: 2rem; }
  .author div strong { font-size: 0.875rem; }
}

/* ========== WORKSHOP / REGISTRATION ========== */
.workshop-section { padding: 4rem 1.5rem; background-color: white; border-top: 1px solid #e2e8f0; }
.workshop-container { max-width: 1024px; margin: 0 auto; display: flex; flex-direction: column; background-color: #128c7e; border-radius: 1rem; overflow: hidden; box-shadow: 0 15px 30px -10px rgba(0,0,0,0.15); }

.workshop-info { padding: 2rem 1.5rem; color: white; position: relative; overflow: hidden; }
.workshop-tag { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; font-weight: 700; color: #bbf7d0; display: block; margin-bottom: 0.5rem; }
.workshop-info h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.2; }
.workshop-info p { color: #e0f2fe; margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.5; }
.workshop-info ul { list-style: none; margin-bottom: 1rem; }
.workshop-info li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; margin-bottom: 0.75rem; }
.workshop-info li i { color: #25d366; background-color: white; border-radius: 50%; padding: 2px; }

.workshop-form { background-color: #f9fafb; padding: 2rem 1.5rem; }
.workshop-form h3 { font-size: 1.25rem; font-weight: 700; color: #111827; margin-bottom: 1rem; }
.workshop-form input { width: 100%; padding: 0.85rem 1rem; border: 1px solid #d1d5db; border-radius: 0.5rem; margin-bottom: 1rem; font-size: 0.95rem; font-family: inherit; }
.workshop-form input:focus { outline: none; border: 2px solid #25d366; }
.workshop-form button[type="submit"], #verify-payment-btn { width: 100%; background-color: #25d366; color: white; font-weight: 700; padding: 1rem; border: none; border-radius: 0.5rem; cursor: pointer; transition: background 0.2s; font-size: 1rem; }
.workshop-form button[type="submit"]:hover, #verify-payment-btn:hover { background-color: #128c7e; }

.payment-box { background-color: white; padding: 1.5rem; border-radius: 1rem; text-align: center; border: 1px solid #e5e7eb; }
.payment-box .btn-primary { margin-bottom: 15px; display: inline-block; width: 100%; }
#transaction-id { margin: 1rem 0; width: 100%; }

@media (min-width: 768px) {
  .workshop-section { padding: 6rem 1.5rem; }
  .workshop-container { flex-direction: row; border-radius: 1.5rem; }
  .workshop-info { flex: 1; padding: 3rem; }
  .workshop-info::after { content: ''; position: absolute; top: 0; right: 0; width: 16rem; height: 16rem; background-color: rgba(255,255,255,0.05); border-radius: 50%; transform: translate(50%, -50%); }
  .workshop-info h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
  .workshop-info p { font-size: 1.125rem; margin-bottom: 2rem; }
  .workshop-info li { font-size: 1.125rem; margin-bottom: 1rem; gap: 0.75rem; }
  .workshop-form { flex: 1; padding: 3rem; }
  .workshop-form h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
}

/* ========== VIDEO MODAL STYLES ========== */
.video-section { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 100000; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(5px); }
.video-section.hidden { display: none; }
.video-overlay { width: 100%; max-width: 800px; padding: 1rem; }
.video-container { position: relative; background: #000; width: 100%; border-radius: 12px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
.video-container iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; height: auto; min-height: 250px; }
.close-video { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.5); border-radius: 50%; width: 30px; height: 30px; border: none; color: white; font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; }

@media (min-width: 768px) {
  .video-container iframe { min-height: 450px; }
  .close-video { top: -45px; right: -40px; background: transparent; width: auto; height: auto; font-size: 2.5rem; }
}

/* ========== FOOTER ========== */
.footer { background-color: #0f172a; color: #9ca3af; padding: 3rem 1.5rem 2rem; border-top: 1px solid #1e293b; }
.footer-container { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; }
.footer-logo { height: 2.5rem; width: auto; background-color: white; border-radius: 0.25rem; padding: 0.25rem; margin-bottom: 1rem; object-fit: contain; }
.footer h4 { color: white; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.05em; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.75rem; font-size: 0.9rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.footer a { transition: color 0.2s; }
.footer a:hover { color: #25d366; }
.footer-copyright { max-width: 1280px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid #334155; text-align: center; font-size: 0.8rem; }

@media (min-width: 768px) {
  .footer-container { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
  .footer h4 { font-size: 0.875rem; }
  .footer li { margin-bottom: 0.5rem; font-size: 0.875rem; gap: 0.75rem; }
  .footer-copyright { margin-top: 2.5rem; font-size: 0.75rem; }
}