/* PNB Events - Malaysian Government Style */

:root {
  --pnb-blue: #002147;
  --pnb-blue-light: #3b82f6;
  --pnb-navy: #001122;
  --pnb-gold: #d4af37;
  --pnb-gold-light: #f4d03f;
  --pnb-red: #dc2626;
  --pnb-green: #059669;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  background: var(--pnb-blue);
  padding: 12px 0;
  margin-bottom: 20px;
}

.breadcrumb-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: var(--pnb-gold);
}

/* Header */
.header {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.nav-left .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--pnb-blue);
}

.logo-subtitle {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}

.nav-center .nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pnb-blue);
  border-bottom-color: var(--pnb-blue);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  min-width: 400px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 8px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(135deg, var(--pnb-blue) 0%, var(--pnb-navy) 100%);
  color: var(--white);
  border-radius: 12px 12px 0 0;
}

.dropdown-header h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.dropdown-header p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

.dropdown-grid {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.dropdown-item:hover {
  background: var(--bg-secondary);
  border-color: var(--pnb-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.dropdown-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--pnb-blue) 0%, var(--pnb-navy) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.dropdown-item:hover .dropdown-icon {
  background: linear-gradient(135deg, var(--pnb-gold) 0%, var(--pnb-gold-light) 100%);
  transform: scale(1.1);
}

.dropdown-content h5 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 2px 0;
  color: var(--text-primary);
}

.dropdown-content p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

.nav-right {
  display: flex;
  gap: 12px;
}

.btn-login,
.btn-register {
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-register {
  background: var(--pnb-blue);
  color: white;
  border-color: var(--pnb-blue);
}

.btn-login:hover {
  background: var(--bg-secondary);
}

.btn-register:hover {
  background: var(--pnb-blue-light);
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, var(--pnb-blue) 0%, var(--pnb-blue-light) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.search-box {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.search-input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--text-primary);
}

.search-input::placeholder {
  color: var(--text-light);
}

.search-btn {
  padding: 16px 24px;
  background: var(--pnb-gold);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-btn:hover {
  background: #d97706;
}


/* Filter Tabs */
.filter-section {
  background: var(--bg-secondary);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.filter-tabs {
  display: flex;
  gap: 8px;
}

.filter-tab {
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--pnb-blue);
  color: white;
  border-color: var(--pnb-blue);
}

/* Events Grid */
.events-section {
  padding: 40px 0;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.event-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.event-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.event-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border: 2px solid var(--pnb-blue);
}

.event-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--pnb-blue);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 16px;
}

.event-badge.completed {
  background: var(--pnb-green);
}

.event-content {
  padding: 20px;
}

.event-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.3;
}

.event-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-secondary);
}

.event-location {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-cost {
  font-weight: 600;
  color: var(--pnb-green);
}

.event-dates {
  margin-bottom: 20px;
}

.date-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.date-label {
  font-weight: 600;
  color: var(--text-primary);
}

.date-time {
  color: var(--text-secondary);
}

.event-actions {
  display: flex;
  gap: 12px;
}

.btn-event {
  flex: 1;
  padding: 10px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-event:hover {
  background: var(--bg-secondary);
  border-color: var(--pnb-blue);
  color: var(--pnb-blue);
}

.btn-register-event {
  flex: 1;
  padding: 10px 16px;
  background: var(--pnb-blue);
  border: 1px solid var(--pnb-blue);
  color: white;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-register-event:hover {
  background: var(--pnb-blue-light);
}

.btn-completed {
  flex: 1;
  padding: 10px 16px;
  background: var(--bg-tertiary);
  color: var(--text-light);
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
}

/* Email Preview Section */
.email-preview-section {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.email-preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.preview-text {
  padding-right: 20px;
}

.preview-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.preview-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn-preview {
  display: inline-block;
  background: var(--pnb-blue);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.btn-preview:hover {
  background: var(--pnb-blue-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.preview-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.email-mockup {
  width: 300px;
  height: 400px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  border: 2px solid var(--pnb-gold);
}

.mockup-header {
  height: 80px;
  background: var(--pnb-blue);
  position: relative;
}

.mockup-header::after {
  content: 'PNB Events';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.mockup-banner {
  height: 120px;
  background: linear-gradient(135deg, var(--pnb-blue) 0%, #003366 100%);
  position: relative;
}

.mockup-banner::after {
  content: 'PNB Knowledge Forum 2025';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  line-height: 1.3;
}

.mockup-content {
  padding: 20px;
  background: var(--white);
}

.mockup-line {
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  margin-bottom: 12px;
}

.mockup-line.short {
  width: 60%;
}

.mockup-button {
  height: 40px;
  background: var(--pnb-gold);
  border-radius: 20px;
  margin: 20px;
  position: relative;
}

.mockup-button::after {
  content: 'Confirm Attendance';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-weight: 600;
  font-size: 10px;
}

/* Stats Section */
.stats-section {
  background: var(--bg-secondary);
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--pnb-blue);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Testimonials */
.testimonials-section {
  padding: 60px 0;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.6;
}

.testimonial-author {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: var(--pnb-blue);
}

.contact-info {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--text-light);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--pnb-blue);
}

/* Event Detail Page */
.event-detail-page {
  padding: 40px 0;
}

.event-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
}

.event-breadcrumb {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.event-breadcrumb a {
  color: var(--pnb-blue);
  text-decoration: none;
}

.event-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.event-header-actions {
  display: flex;
  gap: 12px;
}

.btn-copy-url,
.btn-pra-register {
  padding: 10px 20px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-pra-register {
  background: var(--pnb-blue);
  color: white;
  border-color: var(--pnb-blue);
}

.event-details-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

.event-main-content {
  min-width: 0;
}

.event-section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-content {
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-content h3 {
  color: var(--text-primary);
  margin: 20px 0 12px;
  font-size: 16px;
}

.section-content ul {
  margin: 16px 0;
  padding-left: 20px;
}

.section-content li {
  margin-bottom: 8px;
}

.program-dates {
  margin-bottom: 24px;
}

.date-range {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.date-separator {
  color: var(--text-secondary);
}

.program-sessions h3 {
  margin-bottom: 16px;
  color: var(--text-primary);
}

.session-table {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.session-header {
  background: var(--bg-secondary);
  padding: 12px 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.session-details {
  padding: 16px;
}

.session-time {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.agenda-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-tertiary);
}

.agenda-item:last-child {
  border-bottom: none;
}

.agenda-item .time {
  font-weight: 600;
  color: var(--pnb-blue);
  min-width: 120px;
}

.agenda-item .activity {
  color: var(--text-primary);
}

.location-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.location-venue {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.map-placeholder {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.program-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-item label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
}

.info-value {
  font-weight: 600;
  color: var(--text-primary);
}

.documents-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.document-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.document-link:hover {
  background: var(--bg-secondary);
  border-color: var(--pnb-blue);
}

.doc-icon {
  color: var(--pnb-blue);
}

/* Sidebar */
.event-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.organizer-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--pnb-blue);
  margin-bottom: 12px;
}

.contact-person {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-person a {
  color: var(--pnb-blue);
  text-decoration: none;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pnb-blue);
}

.btn-submit {
  padding: 12px 20px;
  background: var(--pnb-blue);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-submit:hover {
  background: var(--pnb-blue-light);
}

.form-note {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-action {
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-action:hover {
  background: var(--bg-secondary);
  border-color: var(--pnb-blue);
  color: var(--pnb-blue);
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 16px;
  }
  
  .nav-center .nav-menu {
    gap: 20px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
  }
  
  .event-card.featured {
    grid-column: 1;
  }
  
  .event-details-grid {
    grid-template-columns: 1fr;
  }
  
  .event-header {
    flex-direction: column;
    gap: 20px;
  }
  
  .location-info {
    grid-template-columns: 1fr;
  }
  
  .program-info-grid {
    grid-template-columns: 1fr;
  }

  .email-preview-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .preview-text {
    padding-right: 0;
  }

  .preview-title {
    font-size: 28px;
  }

  .preview-description {
    font-size: 16px;
  }

  .email-mockup {
    width: 280px;
    height: 360px;
  }

  .rsvp-preview-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .rsvp-mockup {
    width: 280px;
    height: 400px;
  }
}

/* RSVP Preview Section */
.rsvp-preview-section {
  background: linear-gradient(135deg, var(--pnb-blue) 0%, var(--pnb-navy) 100%);
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  color: var(--white);
}

.rsvp-preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.rsvp-preview-section .preview-text {
  padding-left: 20px;
}

.rsvp-preview-section .preview-title {
  color: var(--white);
}

.rsvp-preview-section .preview-description {
  color: rgba(255, 255, 255, 0.9);
}

.rsvp-preview-section .btn-preview {
  background: var(--pnb-gold);
  color: var(--pnb-blue);
}

.rsvp-preview-section .btn-preview:hover {
  background: var(--pnb-gold-light);
  transform: translateY(-2px);
}

.rsvp-mockup {
  width: 300px;
  height: 450px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
  border: 2px solid var(--pnb-gold);
  margin: 0 auto;
}

.rsvp-mockup-header {
  height: 60px;
  background: var(--pnb-blue);
  position: relative;
}

.rsvp-mockup-header::after {
  content: 'PNB Events';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
}

.rsvp-mockup-icon {
  width: 80px;
  height: 80px;
  background: var(--pnb-gold);
  border-radius: 50%;
  margin: 30px auto 20px;
  position: relative;
}

.rsvp-mockup-icon::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-weight: 700;
  font-size: 24px;
}

.rsvp-mockup-text {
  padding: 0 20px;
  margin-bottom: 20px;
}

.rsvp-mockup-line {
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: 3px;
  margin-bottom: 8px;
}

.rsvp-mockup-line.short {
  width: 70%;
  margin: 0 auto 8px;
}

.rsvp-mockup-qr {
  width: 120px;
  height: 120px;
  background: var(--white);
  border: 2px solid var(--pnb-gold);
  border-radius: 12px;
  margin: 20px auto;
  position: relative;
}

.rsvp-mockup-qr::after {
  content: 'QR';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 12px;
}

.rsvp-mockup-buttons {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rsvp-mockup-btn {
  height: 35px;
  background: var(--pnb-blue);
  border-radius: 8px;
  position: relative;
}

.rsvp-mockup-btn.secondary {
  background: var(--white);
  border: 2px solid var(--pnb-blue);
}

.rsvp-mockup-btn::after {
  content: 'Add to Calendar';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-weight: 600;
  font-size: 8px;
}

  .rsvp-mockup-btn.secondary::after {
    content: 'Back to Event';
    color: var(--pnb-blue);
  }

  .dashboard-preview-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .dashboard-mockup {
    width: 280px;
    height: 400px;
  }


  .dropdown-menu {
    min-width: 320px;
    left: 0;
    transform: translateX(0);
  }

  .nav-dropdown:hover .dropdown-menu {
    transform: translateX(0) translateY(0);
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .dropdown-item {
    padding: 10px;
  }

  .dropdown-icon {
    width: 28px;
    height: 28px;
  }
}

/* Dashboard Preview Section */
.dashboard-preview-section {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.dashboard-preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dashboard-preview-section .preview-text {
  padding-right: 20px;
}

.dashboard-mockup {
  width: 400px;
  height: 500px;
  background: var(--bg-dark);
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
  border: 2px solid var(--pnb-gold);
  margin: 0 auto;
}

.dashboard-mockup-header {
  height: 60px;
  background: var(--pnb-navy);
  position: relative;
  border-bottom: 2px solid var(--pnb-gold);
}

.dashboard-mockup-header::after {
  content: 'PNB Knowledge Forum 2025';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
}

.dashboard-mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 12px;
  height: 200px;
}

.dashboard-mockup-panel {
  background: var(--white);
  border-radius: 8px;
  padding: 8px;
  box-shadow: var(--shadow-sm);
}

.dashboard-mockup-panel.stats {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-stat {
  height: 20px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  position: relative;
}

.mockup-stat:nth-child(1)::after {
  content: '247';
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  font-size: 8px;
  font-weight: 700;
  color: var(--text-primary);
}

.mockup-stat:nth-child(2)::after {
  content: '189';
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  font-size: 8px;
  font-weight: 700;
  color: var(--text-primary);
}

.mockup-stat:nth-child(3)::after {
  content: '58';
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  font-size: 8px;
  font-weight: 700;
  color: var(--text-primary);
}

.mockup-chart {
  height: 100%;
  background: linear-gradient(45deg, var(--pnb-gold) 0%, var(--pnb-gold-light) 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.mockup-chart::after {
  content: 'Live Chart';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 8px;
  font-weight: 600;
}

.mockup-pie {
  height: 100%;
  background: conic-gradient(
    #3b82f6 0deg 60deg,
    #10b981 60deg 120deg,
    #f59e0b 120deg 180deg,
    #8b5cf6 180deg 360deg
  );
  border-radius: 50%;
  position: relative;
}

.mockup-pie::after {
  content: 'Pie';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 8px;
  font-weight: 600;
  background: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

.dashboard-mockup-activity {
  padding: 12px;
  background: var(--white);
  margin: 8px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-activity-item {
  height: 16px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  position: relative;
}

.mockup-activity-item:nth-child(1)::after {
  content: 'Ahmad Faisal Rahman - 2 min ago';
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  font-size: 6px;
  font-weight: 600;
  color: var(--text-primary);
}

.mockup-activity-item:nth-child(2)::after {
  content: 'Datuk Dr. Noraini - 5 min ago';
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  font-size: 6px;
  font-weight: 600;
  color: var(--text-primary);
}

.mockup-activity-item:nth-child(3)::after {
  content: 'Dato\' Seri Azman - 8 min ago';
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  font-size: 6px;
  font-weight: 600;
  color: var(--text-primary);
}

