/* ============================================
   WRM – World-Class Frontend Styles v1.5.0
   Fonts: Inter + Hind Siliguri (Bangla)
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

:root {
  --wrm-primary:       #6C3AE5;
  --wrm-primary-dark:  #4F28B8;
  --wrm-accent:        #F72585;
  --wrm-bkash:         #E2136E;
  --wrm-bkash-dark:    #C0115E;
  --wrm-green:         #06D6A0;
  --wrm-gold:          #FFD60A;
  --wrm-dark:          #0D0D1A;
  --wrm-text:          #1a1a2e;
  --wrm-muted:         #6B7280;
  --wrm-border:        rgba(108,58,229,0.15);
  --wrm-input-border:  #e2e8f0;
  --wrm-glass:         rgba(255,255,255,0.75);
  --wrm-radius:        16px;
  --wrm-radius-sm:     10px;
  --wrm-shadow:        0 20px 60px rgba(108,58,229,0.15);
  --wrm-shadow-sm:     0 4px 20px rgba(0,0,0,0.08);
  --wrm-transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Base ── */
.wrm-registration-wrapper,
.wrm-webinar-card,
.wrm-payment-box-module,
.wrm-webinar-details-wrapper,
.wrm-webinar-list-wrapper,
.wrm-countdown-wrapper,
.wrm-registration-widget,
.wrm-single-webinar-wrapper {
  font-family: 'Hind Siliguri', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--wrm-text);
  box-sizing: border-box;
}

/* ── Registration Form Card ── */
.wrm-registration-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 44px 48px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

/* Title & Subtitle */
.wrm-form-title {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px;
  line-height: 1.25;
}
.wrm-form-subtitle {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 0.97rem;
  color: #4B5563;
  margin: 0 0 32px;
  line-height: 1.65;
}

/* Required asterisk */
.wrm-required {
  color: #E2136E;
  font-weight: 700;
  margin-left: 2px;
}

/* Form rows */
.wrm-registration-form .wrm-form-row {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}
.wrm-registration-form .wrm-form-row.wrm-col-2 {
  grid-template-columns: 1fr 1fr;
}
.wrm-registration-form .wrm-form-group {
  display: flex;
  flex-direction: column;
}
.wrm-registration-form .wrm-form-group.wrm-full-width {
  grid-column: 1 / -1;
}
.wrm-registration-form label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #111827;
  font-family: 'Hind Siliguri', sans-serif;
}

.wrm-registration-form input[type="text"],
.wrm-registration-form input[type="email"],
.wrm-registration-form input[type="tel"],
.wrm-registration-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--wrm-input-border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Hind Siliguri', 'Inter', sans-serif;
  background: #fff;
  color: #374151;
  transition: var(--wrm-transition);
  outline: none;
  box-sizing: border-box;
  appearance: none;
}
.wrm-registration-form input::placeholder,
.wrm-registration-form textarea::placeholder {
  color: #9CA3AF;
  font-family: 'Hind Siliguri', sans-serif;
}
.wrm-registration-form input[type="text"]:focus,
.wrm-registration-form input[type="email"]:focus,
.wrm-registration-form input[type="tel"]:focus,
.wrm-registration-form textarea:focus {
  border-color: #6C3AE5;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(108, 58, 229, 0.1);
}
.wrm-registration-form textarea {
  resize: vertical;
  min-height: 110px;
}

/* Terms Row */
.wrm-terms-row {
  margin-bottom: 24px;
}
.wrm-terms-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.93rem;
  color: #374151;
  font-weight: 400 !important;
  font-family: 'Hind Siliguri', sans-serif;
  line-height: 1.5;
}
.wrm-terms-checkbox {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  border: 1.5px solid #D1D5DB !important;
  border-radius: 4px !important;
  accent-color: var(--wrm-bkash);
  cursor: pointer;
  margin-top: 2px;
}
.wrm-terms-link {
  color: var(--wrm-bkash) !important;
  text-decoration: underline !important;
  font-weight: 500 !important;
  transition: color 0.2s;
}
.wrm-terms-link:hover {
  color: var(--wrm-bkash-dark) !important;
}

/* Submit / bKash Button */
.wrm-form-submit {
  margin-top: 4px;
}
.wrm-submit-btn,
.wrm-bkash-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #E2136E 0%, #C0115E 100%);
  color: #fff;
  padding: 17px 32px;
  border: none;
  border-radius: 12px;
  font-size: 1.08rem;
  font-weight: 700;
  font-family: 'Hind Siliguri', sans-serif;
  cursor: pointer;
  transition: var(--wrm-transition);
  letter-spacing: 0.01em;
  box-shadow: 0 6px 24px rgba(226, 19, 110, 0.38);
  position: relative;
  overflow: hidden;
}
.wrm-submit-btn:hover,
.wrm-bkash-submit-btn:hover {
  background: linear-gradient(135deg, #C0115E 0%, #a00e4e 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(226, 19, 110, 0.50);
}
.wrm-submit-btn:active,
.wrm-bkash-submit-btn:active {
  transform: translateY(0);
}

/* Response messages */
.wrm-form-response {
  display: none;
  margin-top: 20px;
  border-radius: var(--wrm-radius-sm);
  padding: 16px 20px;
  font-weight: 500;
  font-family: 'Hind Siliguri', sans-serif;
}
.wrm-form-response.success {
  background: rgba(6, 214, 160, 0.12);
  color: #065F46;
  border: 1.5px solid var(--wrm-green);
  display: block;
}
.wrm-form-response.error {
  background: rgba(226, 19, 110, 0.08);
  color: #9B1D42;
  border: 1.5px solid var(--wrm-bkash);
  display: block;
}
.wrm-spinner {
  display: inline-block;
  margin-top: 10px;
  color: var(--wrm-muted);
  font-size: 0.88rem;
  font-family: 'Hind Siliguri', sans-serif;
}

/* ── Webinar Card Grid ── */
.wrm-webinar-grid { display: grid; gap: 28px; }
.wrm-columns-1 { grid-template-columns: 1fr; }
.wrm-columns-2 { grid-template-columns: repeat(2,1fr); }
.wrm-columns-3 { grid-template-columns: repeat(3,1fr); }
.wrm-columns-4 { grid-template-columns: repeat(4,1fr); }


.wrm-webinar-card {
  background: #fff; border-radius: var(--wrm-radius);
  box-shadow: var(--wrm-shadow-sm);
  overflow: hidden; transition: var(--wrm-transition);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
}
.wrm-webinar-card:hover { transform: translateY(-6px); box-shadow: var(--wrm-shadow); }

.wrm-webinar-card-image { position: relative; overflow: hidden; height: 190px; background: linear-gradient(135deg,var(--wrm-primary),var(--wrm-accent)); }
.wrm-webinar-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.wrm-webinar-card:hover .wrm-webinar-card-image img { transform: scale(1.06); }

.wrm-card-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: #fff;
}
.wrm-badge-free  { background: var(--wrm-green); }
.wrm-badge-paid  { background: var(--wrm-accent); }

.wrm-webinar-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.wrm-webinar-card h3 { font-size: 1.1rem; font-weight: 700; margin: 0 0 12px; color: var(--wrm-dark); line-height: 1.4; }
.wrm-card-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.wrm-card-meta span { font-size: 0.8rem; color: var(--wrm-muted); display: flex; align-items: center; gap: 5px; }

.wrm-webinar-card .wrm-btn {
  display: inline-block; margin-top: auto;
  background: linear-gradient(135deg,var(--wrm-primary),var(--wrm-primary-dark));
  color: #fff; padding: 11px 24px;
  border-radius: 50px; text-decoration: none;
  font-size: 0.9rem; font-weight: 600;
  text-align: center; transition: var(--wrm-transition);
  box-shadow: 0 4px 16px rgba(108,58,229,0.3);
}
.wrm-webinar-card .wrm-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,58,229,0.45); }

/* ── Countdown Section ── */
.wrm-countdown-container {
  text-align: center;
  padding: 60px 40px;
  background: #0f0a24; /* Default dark background matching screenshot */
  border-radius: var(--wrm-radius);
  color: #fff;
  font-family: 'Hind Siliguri', 'Inter', sans-serif;
  margin: 20px 0;
}

.wrm-countdown-main-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 15px;
  line-height: 1.3;
}

.wrm-countdown-deadline {
  font-size: 1.1rem;
  color: #9CA3AF;
  margin-bottom: 40px;
  font-weight: 500;
}

.wrm-countdown-wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.wrm-countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}

.wrm-countdown-block .wrm-count {
  display: block;
  font-size: 3.8rem;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 15px 25px;
  line-height: 1;
  margin-bottom: 12px;
  min-width: 90px;
  text-align: center;
}

/* Note: In the shortcode, the span has class wrm-days, wrm-hours etc. 
   I need to target those spans specifically or update the span class. */
.wrm-countdown-block span[class^="wrm-"] {
  display: block;
  font-size: 3.8rem;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 15px 25px;
  line-height: 1;
  margin-bottom: 12px;
  min-width: 90px;
  text-align: center;
}

.wrm-countdown-block label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #9CA3AF;
  text-transform: none;
  letter-spacing: 0;
}

/* Progress Section */
.wrm-countdown-progress-section {
  max-width: 800px;
  margin: 0 auto;
}

.wrm-progress-text {
  font-size: 1.05rem;
  color: #D1D5DB;
  margin-bottom: 20px;
}

.wrm-progress-bar-container {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 20px;
}

.wrm-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #6C3AE5 0%, #F72585 100%);
  border-radius: 50px;
  transition: width 1s ease-out;
}

.wrm-warning-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FBBF24;
  margin-top: 15px;
}

/* ── Payment Box V2 ── */
.wrm-payment-box-v2 {
  background: #fff;
  border: 4px solid #E2136E;
  border-radius: 30px;
  padding: 40px;
  max-width: 700px;
  margin: 30px auto;
  box-shadow: 0 15px 45px rgba(226, 19, 110, 0.1);
  font-family: 'Hind Siliguri', 'Inter', sans-serif;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.wrm-payment-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.wrm-bkash-logo-box {
  background: #E2136E;
  color: #fff;
  font-weight: 800;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.wrm-payment-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0;
}

.wrm-payment-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 30px;
}

.wrm-payment-amount-card {
  background: #F9FAFB;
  border-radius: 20px;
  padding: 25px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.wrm-amount-label {
  font-size: 1.1rem;
  color: #6B7280;
  font-weight: 500;
}

.wrm-amount-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: #E2136E;
}

.wrm-payment-verification-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
  border-top: 1px solid #F3F4F6;
  padding-top: 25px;
}

.wrm-verify-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #374151;
  font-weight: 600;
}

.wrm-verify-item .wrm-icon {
  font-size: 1.2rem;
}

.wrm-payment-footer {
  font-size: 0.95rem;
  color: #9CA3AF;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wrm-footer-icon {
  font-size: 1rem;
}

@media (max-width: 600px) {
  .wrm-payment-box-v2 { padding: 25px; }
  .wrm-payment-title { font-size: 1.5rem; }
  .wrm-payment-amount-card { flex-direction: column; text-align: center; gap: 10px; }
  .wrm-payment-verification-grid { grid-template-columns: 1fr; }
}

/* ── Webinar Details ── */
.wrm-webinar-details-wrapper { max-width: 1100px; margin: 0 auto; }
.wrm-details-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.wrm-details-image-wrap { position: relative; border-radius: var(--wrm-radius); overflow: hidden; box-shadow: var(--wrm-shadow); }
.wrm-details-image-wrap img { width: 100%; height: 320px; object-fit: cover; display: block; }
.wrm-details-header { padding: 36px 0 0; }
.wrm-details-title { font-size: 2.2rem; font-weight: 800; color: var(--wrm-dark); margin: 0 0 16px; line-height: 1.2; }
.wrm-details-meta-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.wrm-meta-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  background: rgba(108,58,229,0.08); color: var(--wrm-primary);
  border: 1px solid rgba(108,58,229,0.18);
}
.wrm-meta-pill.paid  { background: rgba(226,19,110,0.08); color: var(--wrm-bkash); border-color: rgba(226,19,110,0.2); }
.wrm-meta-pill.free  { background: rgba(6,214,160,0.1); color: #065F46; border-color: rgba(6,214,160,0.3); }
.wrm-details-description { font-size: 1rem; color: var(--wrm-muted); line-height: 1.8; margin-bottom: 32px; }
.wrm-details-sidebar {
  background: #fff; border-radius: var(--wrm-radius);
  box-shadow: var(--wrm-shadow);
  padding: 32px; position: sticky; top: 40px;
  border-top: 4px solid var(--wrm-primary);
}
.wrm-sidebar-title { font-size: 1.1rem; font-weight: 700; color: var(--wrm-dark); margin: 0 0 20px; }
.wrm-sidebar-meta { list-style: none; padding: 0; margin: 0 0 24px; border-bottom: 1px solid #f0f0f0; padding-bottom: 20px; }
.wrm-sidebar-meta li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed #f5f5f5; font-size: 0.9rem; }
.wrm-sidebar-meta li:last-child { border-bottom: none; }
.wrm-sidebar-meta .label { color: var(--wrm-muted); font-weight: 500; }
.wrm-sidebar-meta .value { font-weight: 700; color: var(--wrm-dark); }
.wrm-register-cta-btn {
  display: block; width: 100%; padding: 15px;
  background: linear-gradient(135deg,var(--wrm-primary),var(--wrm-accent));
  color: #fff; border: none; border-radius: 50px;
  font-size: 1rem; font-weight: 700; font-family: inherit;
  cursor: pointer; text-align: center; text-decoration: none;
  transition: var(--wrm-transition); box-sizing: border-box;
  box-shadow: 0 8px 24px rgba(108,58,229,0.35);
}
.wrm-register-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(108,58,229,0.5); color: #fff; }

/* ── Alerts ── */
.wrm-alert { padding: 16px 20px; border-radius: var(--wrm-radius-sm); font-weight: 500; margin-bottom: 20px; }
.wrm-alert-warning { background: rgba(255,214,10,0.12); color: #92620A; border: 1.5px solid rgba(255,214,10,0.5); }
.wrm-alert-info    { background: rgba(108,58,229,0.08); color: var(--wrm-primary); border: 1.5px solid rgba(108,58,229,0.2); }

/* ── Single Webinar Hero ── */
.wrm-single-webinar-wrapper { font-family: 'Inter',sans-serif; max-width: 1200px; margin: 0 auto; padding-bottom: 60px; }
.wrm-hero-banner { position: relative; border-radius: var(--wrm-radius); overflow: hidden; margin-bottom: 50px; min-height: 400px; display: flex; align-items: flex-end; background: linear-gradient(135deg,var(--wrm-primary),var(--wrm-accent)); }
.wrm-hero-overlay { background: linear-gradient(to top,rgba(13,13,26,0.9) 0%,rgba(13,13,26,0.1) 100%); width: 100%; padding: 50px; color: #fff; }
.wrm-hero-title { font-size: 2.8rem; font-weight: 800; margin: 0 0 20px; color: #fff; line-height: 1.15; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.wrm-hero-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.wrm-meta-item { background: rgba(255,255,255,0.15); padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); font-weight: 500; }
.wrm-price.wrm-paid { background: var(--wrm-accent); }
.wrm-price.wrm-free { background: var(--wrm-green); color: #fff; }
.wrm-content-container { display: flex; flex-wrap: wrap; gap: 40px; }
.wrm-main-column { flex: 1; min-width: 0; }
.wrm-sidebar-column { flex: 0 0 360px; }
.wrm-section { margin-bottom: 44px; }
.wrm-section h2 { font-size: 1.6rem; font-weight: 700; color: var(--wrm-dark); border-bottom: 2px solid #f0f0f0; padding-bottom: 12px; margin-bottom: 24px; }
.wrm-speaker-card { display: flex; gap: 24px; background: linear-gradient(135deg,rgba(108,58,229,0.05),rgba(247,37,133,0.04)); padding: 24px; border-radius: var(--wrm-radius); border: 1px solid var(--wrm-border); align-items: center; }
.wrm-speaker-avatar { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid var(--wrm-primary); }
.wrm-speaker-info h3 { margin: 0 0 8px; font-size: 1.1rem; color: var(--wrm-dark); }
.wrm-speaker-info p  { margin: 0; color: var(--wrm-muted); line-height: 1.6; font-size: 0.93rem; }
.wrm-registration-widget { background: #fff; padding: 36px; border-radius: var(--wrm-radius); box-shadow: var(--wrm-shadow); position: sticky; top: 40px; border-top: 4px solid var(--wrm-primary); }
.wrm-registration-widget h3 { margin: 0 0 24px; font-size: 1.3rem; font-weight: 700; text-align: center; color: var(--wrm-dark); }
.wrm-widget-meta-list { list-style: none; padding: 0; margin: 0 0 28px; border-bottom: 1px solid #f0f0f0; padding-bottom: 20px; }
.wrm-widget-meta-list li { padding: 9px 0; display: flex; justify-content: space-between; border-bottom: 1px dashed #f5f5f5; font-size: 0.9rem; }
.wrm-widget-meta-list li:last-child { border-bottom: none; }

/* ── Builder placeholder ── */
.wrm-builder-placeholder {
  padding: 36px 24px; border: 2px dashed rgba(108,58,229,0.3);
  background: linear-gradient(135deg,rgba(108,58,229,0.04),rgba(247,37,133,0.03));
  border-radius: var(--wrm-radius); text-align: center;
  font-family: 'Inter',sans-serif;
}
.wrm-builder-placeholder strong { display: block; font-size: 1rem; color: var(--wrm-primary); margin: 10px 0 6px; }
.wrm-builder-placeholder span  { font-size: 0.85rem; color: var(--wrm-muted); }

/* ── Webinar Hero Section ── */
.wrm-hero-section {
  background: #0f0a24; /* Deep dark background */
  padding: 80px 40px;
  border-radius: 40px;
  color: #fff;
  text-align: center;
  font-family: 'Hind Siliguri', 'Inter', sans-serif;
  margin-bottom: 40px;
}

.wrm-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.wrm-hero-badge {
  display: inline-block;
  background: rgba(226, 19, 110, 0.15);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(226, 19, 110, 0.3);
}

.wrm-hero-main-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #fff;
}

.wrm-hero-main-title .wrm-highlight {
  color: #FBBF24; /* Yellow highlight */
}

.wrm-hero-sub-desc {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #D1D5DB;
  margin-bottom: 45px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.wrm-hero-meta-cards {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.wrm-meta-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #E5E7EB;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wrm-meta-card .icon { font-size: 1.1rem; }

.wrm-hero-features {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  display: inline-block;
  text-align: left;
}

.wrm-hero-features li {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.wrm-hero-features .wrm-check {
  color: #10B981;
  font-weight: 800;
}

.wrm-hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.wrm-btn-pink {
  background: #E2136E;
  color: #fff !important;
  padding: 18px 35px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(226, 19, 110, 0.3);
  transition: all 0.3s ease;
}

.wrm-btn-pink:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(226, 19, 110, 0.45); }

.wrm-btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff !important;
  padding: 18px 35px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wrm-btn-outline:hover { background: rgba(255, 255, 255, 0.1); }

.wrm-hero-footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.wrm-hero-footer-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}

.wrm-footer-col .label {
  display: block;
  font-size: 0.9rem;
  color: #9CA3AF;
  margin-bottom: 8px;
}

.wrm-footer-col .value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FBBF24;
}

@media (max-width: 900px) {
  .wrm-hero-footer-info { grid-template-columns: 1fr 1fr; gap: 30px; }
  .wrm-hero-main-title { font-size: 2.5rem; }
}

@media (max-width: 600px) {
  .wrm-hero-section { padding: 50px 20px; border-radius: 20px; }
  .wrm-hero-actions { flex-direction: column; }
  .wrm-hero-footer-info { grid-template-columns: 1fr; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .wrm-details-grid { grid-template-columns: 1fr; }
  .wrm-sidebar-column { flex: 1; }
  .wrm-details-sidebar { position: static; }
}
@media (max-width: 768px) {
  .wrm-webinar-grid { grid-template-columns: 1fr !important; }
  .wrm-registration-wrapper { padding: 28px 22px; }
  .wrm-registration-form .wrm-form-row.wrm-col-2 { grid-template-columns: 1fr; }
  .wrm-hero-title { font-size: 1.9rem; }
  .wrm-countdown-timer { gap: 12px; }
  .wrm-countdown-block { padding: 18px 20px; min-width: 72px; }
  .wrm-countdown-block .wrm-count { font-size: 2rem; }
  .wrm-content-container { flex-direction: column; }
}
@media (max-width: 480px) {
  .wrm-registration-wrapper { padding: 22px 16px; }
  .wrm-form-title { font-size: 1.5rem; }
  .wrm-hero-banner { min-height: 280px; }
  .wrm-hero-overlay { padding: 28px; }
}

/* ── Combined Registration & Payment ── */
.wrm-combined-wrapper {
  max-width: 1100px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
  overflow: hidden;
  font-family: 'Hind Siliguri', 'Inter', sans-serif;
}

.wrm-combined-header {
  padding: 40px 40px 20px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.wrm-combined-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 10px;
}

.wrm-combined-subtitle {
  font-size: 1.1rem;
  color: #4B5563;
  margin: 0;
}

.wrm-combined-body {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  gap: 40px;
}

.wrm-combined-form-side {
  flex: 1.2;
  min-width: 400px;
}

.wrm-combined-payment-side {
  flex: 1;
  min-width: 300px;
}

/* Override child module styles for combined view */
.wrm-combined-form-side .wrm-registration-wrapper {
  max-width: 100%;
  padding: 0;
  box-shadow: none;
  background: transparent;
}

.wrm-combined-payment-side .wrm-payment-box-v2 {
  max-width: 100%;
  margin: 0;
  padding: 30px;
  background: #f8fafc;
  border-width: 2px;
}

.wrm-combined-wrapper.wrm-layout-one_column .wrm-combined-body {
  flex-direction: column;
}

.wrm-combined-wrapper.wrm-layout-one_column .wrm-combined-form-side,
.wrm-combined-wrapper.wrm-layout-one_column .wrm-combined-payment-side {
  width: 100%;
  flex: none;
  min-width: 0;
}

@media (max-width: 900px) {
  .wrm-combined-body {
    flex-direction: column;
  }
  .wrm-combined-form-side,
  .wrm-combined-payment-side {
    min-width: 0;
  }
  .wrm-combined-header {
    padding: 30px 20px;
  }
  .wrm-combined-body {
    padding: 20px;
  }
}

/* ── Layout Isolation Fix ── */
.wrm-module-isolate {
  display: block !important;
  width: 100% !important;
  clear: both !important;
  position: relative !important;
  float: none !important;
  margin-bottom: 40px !important;
  box-sizing: border-box !important;
}

/* Ensure no overlap with fixed or absolute positioned siblings */
.wrm-module-isolate::after {
  content: "";
  display: table;
  clear: both;
}

/* ── Premium Countdown v2 ── */
.wrm-countdown-premium-v2 {
  max-width: 1100px;
  margin: 40px auto;
  font-family: 'Hind Siliguri', 'Inter', sans-serif;
  z-index: 1; /* Stay in flow but ensure it's not buried */
}

.wrm-countdown-card {
  background: #110824 !important; /* Deep dark purple/blue */
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 24px !important;
  padding: 50px 40px !important;
  text-align: center !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4) !important;
  position: relative;
  overflow: visible !important; /* Allow badges to peak out if needed */
}

.wrm-countdown-title {
  color: #ffffff !important;
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  margin: 0 0 12px !important;
  line-height: 1.4 !important;
}

.wrm-countdown-subtitle {
  color: #94A3B8 !important;
  font-size: 1.1rem !important;
  margin: 0 0 40px !important;
}

.wrm-countdown-grid {
  display: flex !important;
  justify-content: center !important;
  gap: 25px !important;
  margin: 0 0 50px !important;
  flex-wrap: wrap !important;
}

.wrm-countdown-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
}

.wrm-countdown-item .num-box {
  background: #1E1B4B !important; /* Darker block */
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 16px !important;
  width: 90px !important;
  height: 90px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3) !important;
}

.wrm-countdown-item span {
  color: #FACC15 !important; /* Yellow numbers */
  font-size: 2.8rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.wrm-countdown-item label {
  color: #E2136E !important; /* Pink/Purple label */
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin: 0 !important;
}

.wrm-countdown-footer {
  max-width: 800px !important;
  margin: 0 auto !important;
}

.wrm-seats-info {
  color: #94A3B8 !important;
  font-size: 1.1rem !important;
  margin: 0 0 20px !important;
}

.wrm-progress-track {
  height: 12px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  margin: 0 0 25px !important;
}

.wrm-progress-fill {
  height: 100% !important;
  background: linear-gradient(90deg, #E2136E 0%, #FACC15 100%) !important;
  border-radius: 10px !important;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.wrm-warning-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: rgba(226, 19, 110, 0.15) !important;
  color: #FB7185 !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  border: 1.5px solid rgba(226, 19, 110, 0.3) !important;
}

.wrm-expired {
  color: #EF4444 !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
}

@media (max-width: 768px) {
  .wrm-countdown-card { padding: 40px 20px !important; }
  .wrm-countdown-title { font-size: 1.5rem !important; }
  .wrm-countdown-grid { gap: 15px !important; }
  .wrm-countdown-item .num-box { width: 70px !important; height: 70px !important; }
  .wrm-countdown-item span { font-size: 2rem !important; }
}
