/* ============================================
   MOFAS ASM 2026 - Professional Stylesheet
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ============================================
   CSS Variables
   ============================================ */
:root {
  /* Colors - Professional Medical Theme */
  --primary: #0f4c81;
  --primary-dark: #0a3a63;
  --primary-light: #e6f0f7;
  --primary-gradient: linear-gradient(135deg, #0f4c81 0%, #1a6eb5 100%);
  
  --accent: #00a896;
  --accent-dark: #008578;
  --accent-light: #e6f7f5;
  
  --text-dark: #1a202c;
  --text-body: #4a5568;
  --text-muted: #718096;
  --text-light: #a0aec0;
  
  --bg-white: #ffffff;
  --bg-light: #f7fafc;
  --bg-alt: #edf2f7;
  
  --border: #e2e8f0;
  --border-light: #edf2f7;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-primary: 0 10px 40px -10px rgba(15, 76, 129, 0.4);
  
  /* Spacing */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Z-index layers */
  --z-modal: 9999;
  --z-modal-backdrop: 9998;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================
   Layout
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-alt {
  background: var(--bg-white);
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.logo-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition: var(--transition);
}

.logo:hover .logo-icon {
  transform: scale(1.05);
}

.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary);
  line-height: 1.3;
}

.logo-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 0.25rem;
}

@media (min-width: 1100px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  padding: 0.625rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: calc(100% - 2rem);
}

.nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-links a.active::after {
  width: calc(100% - 2rem);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--bg-light);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  gap: 5px;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background: var(--primary-light);
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1100px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-white);
  padding: 1.5rem;
  overflow-y: auto;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav.active {
  display: block;
  height: 630px;
}

.mobile-nav a {
  display: block;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--primary-light);
  color: var(--primary);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: visible;
  margin-top: 80px;
  padding-bottom: 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/BG.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

/* Animated Background Shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 20s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation-delay: -5s;
}

.hero-shape:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 20%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -20px) scale(1.05); }
  50% { transform: translate(-10px, 20px) scale(0.95); }
  75% { transform: translate(-20px, -10px) scale(1.02); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 2rem 1.5rem;
  max-width: 900px;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero h1 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease 0.3s backwards;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  opacity: 0.95;
  margin-bottom: 2rem;
  font-weight: 400;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.5s backwards;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  opacity: 0.95;
}

.hero-meta-item svg {
  width: 22px;
  height: 22px;
  opacity: 0.9;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.6s backwards;
}

@media (min-width: 640px) {
  .countdown {
    gap: 1.25rem;
  }
}

.countdown-item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
  min-width: 75px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

@media (min-width: 640px) {
  .countdown-item {
    padding: 1.25rem 1.5rem;
    min-width: 90px;
  }
}

.countdown-item:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.countdown-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 0.375rem;
}

@media (min-width: 640px) {
  .countdown-number {
    font-size: 2.5rem;
  }
}

.countdown-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease 0.7s backwards;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px -10px rgba(15, 76, 129, 0.5);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border-color: white;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Cards
   ============================================ */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

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

.card-body {
  padding: 1.75rem;
}

/* Schedule Cards */
.schedule-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .schedule-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.schedule-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.schedule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

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

.schedule-date {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.schedule-day {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.schedule-desc {
  font-size: 0.875rem;
  color: var(--text-body);
}

/* Message Cards */
.message-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .message-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.message-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
}

@media (min-width: 640px) {
  .message-card {
    flex-direction: row;
    align-items: flex-start;
  }
}

.message-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}

.message-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}

@media (min-width: 640px) {
  .message-photo {
    width: 140px;
    height: 140px;
  }
}

.message-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.message-content .role {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

.message-content p {
  color: var(--text-body);
  line-height: 1.8;
}

/* Highlight Cards */
.highlights-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-card {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.highlight-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.highlight-icon svg {
  width: 28px;
  height: 28px;
}

.highlight-card h4 {
  margin-bottom: 0.625rem;
}

.highlight-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
  background: var(--primary-gradient);
  color: white;
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
  background: linear-gradient(rgba(0, 71, 171, 0.75), rgba(0, 71, 171, 0.75)), url('../images/Header Sub page.jpg.jpeg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.page-header h1 {
  color: white;
  margin-bottom: 0.75rem;
  position: relative;
}

.page-header p {
  font-size: 1.125rem;
  opacity: 0.9;
  position: relative;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  opacity: 0.8;
  position: relative;
}

.breadcrumb a:hover {
  opacity: 1;
}

/* ============================================
   Committee Section
   ============================================ */
.committee-section {
  margin-bottom: 3rem;
}

.committee-section:last-child {
  margin-bottom: 0;
}

.committee-section h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-light);
}

.committee-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
  .committee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .committee-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.committee-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.committee-card:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
  border-color: var(--primary-light);
}

.committee-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  flex-shrink: 0;
}

.committee-info h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.committee-info p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================
   Tables
   ============================================ */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
}

th, td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

th {
  background: var(--primary);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

th:first-child {
  border-radius: var(--radius-lg) 0 0 0;
}

th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: var(--bg-light);
}

/* ============================================
   Forms
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--bg-white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* ============================================
   Venue Section
   ============================================ */
.venue-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 768px) {
  .venue-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.venue-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.venue-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.venue-image:hover img {
  transform: scale(1.05);
}

.venue-info h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.venue-details {
  margin-top: 1.5rem;
}

.venue-detail {
  display: flex;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-light);
}

.venue-detail:last-child {
  border-bottom: none;
}

.venue-detail strong {
  min-width: 130px;
  color: var(--primary);
  font-weight: 600;
}

/* Attractions */
.attractions-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
  .attractions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .attractions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.attraction-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.attraction-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.attraction-card:hover img {
  transform: scale(1.08);
}

.attraction-card .card-body {
  padding: 1.5rem;
}

.attraction-card h4 {
  margin-bottom: 0.5rem;
}

.attraction-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ============================================
   Important Dates
   ============================================ */
.dates-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.date-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.date-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.date-badge {
  background: var(--primary-gradient);
  color: white;
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  box-shadow: var(--shadow-primary);
}

.date-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.date-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: linear-gradient(180deg, #1a202c 0%, #0f1419 100%);
  color: white;
  padding: 5rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(1, 1fr);
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 1.25rem;
}

.footer-brand .logo-icon {
  box-shadow: none;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: white;
}

/* ============================================
   Coming Soon
   ============================================ */
.coming-soon {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--border);
}

.coming-soon-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.coming-soon-icon svg {
  width: 40px;
  height: 40px;
}

.coming-soon h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.coming-soon p {
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   Notice/Alert
   ============================================ */
.notice {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

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

.notice-info {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  color: var(--primary-dark);
}

.notice-accent {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  color: var(--accent-dark);
}

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none; }

/* Scroll Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Grid Utilities
   ============================================ */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   Modal Styles
   ============================================ */
.message-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: var(--z-modal);
  justify-content: center;
  align-items: center;
  padding: 1rem;
  transition: background 0.3s ease;
  overflow-y: auto;
}

.message-modal.active {
  background: rgba(0, 0, 0, 0.75);
}

.modal-content {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.9) translateY(-20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 2rem auto;
}

.message-modal.active .modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
}

.modal-header {
  padding: 2.5rem 2.5rem 1.5rem;
  border-bottom: 2px solid var(--border-light);
  background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
}

.modal-header h2 {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.02em;
}

.modal-header h3 {
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.modal-role {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

.modal-body {
  padding: 2rem 2.5rem 2.5rem;
  color: var(--text-body);
  line-height: 1.8;
  font-size: 1rem;
}

.modal-body p {
  margin: 0 0 1.25rem 0;
  text-align: justify;
}

.modal-body p:last-child {
  margin-bottom: 0;
}

.modal-body em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}

.modal-body strong {
  color: var(--primary);
  font-weight: 700;
}

.modal-body .signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border-light);
  font-style: normal;
  text-align: left;
  color: var(--text-dark);
}

.btn-read-message {
  position: relative;
  overflow: hidden;
}

.btn-read-message:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-read-message:active {
  transform: translateY(0);
}

/* Modal Responsive Styles */
@media (max-width: 768px) {
  .modal-content {
    margin: 1rem;
    max-height: 85vh;
    border-radius: var(--radius);
  }
  
  .modal-header {
    padding: 2rem 1.5rem 1.25rem;
  }
  
  .modal-header h2 {
    font-size: 1.25rem;
  }
  
  .modal-header h3 {
    font-size: 1.1rem;
  }
  
  .modal-role {
    font-size: 0.875rem;
  }
  
  .modal-body {
    padding: 1.5rem;
    font-size: 0.95rem;
  }
  
  .modal-close {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    top: 0.75rem;
    right: 0.75rem;
  }
}
