/* Main Preview Website Stylesheet */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 13, 11, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 155, 39, 0.2);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(15, 13, 11, 0.92);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
  border-bottom: 1.5px solid var(--gold-primary);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo .logo-svg, .nav-logo .logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
}

.nav-links a.active {
  border-bottom: 2px solid var(--gold-primary);
  padding-bottom: 4px;
}

.nav-cta {
  padding: 8px 20px !important;
  font-size: 0.8rem !important;
  color: var(--text-dark) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition-fast);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    box-shadow: var(--shadow-lg);
    border-left: 1.5px solid var(--gold-primary);
    transition: var(--transition-smooth);
    padding: 40px;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Sections Global */
section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(253, 252, 250, 0.02);
}

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

.section-header {
  max-width: 750px;
  margin: 0 auto 56px auto;
}

.text-center {
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.8rem;
  }
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-color), transparent);
  margin: 60px 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  background-color: var(--bg-dark);
  text-align: center;
  overflow: hidden;
}

/* Hero Slider Backgrounds */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

.slider-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.slider-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(253, 252, 250, 0.2);
  border: 1.5px solid rgba(253, 252, 250, 0.35);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-indicators .indicator:hover {
  background: rgba(253, 252, 250, 0.4);
}

.slider-indicators .indicator.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  width: 32px;
  border-radius: 6px;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(197, 155, 39, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(179, 61, 38, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--red-accent);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.4rem;
  }
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 60%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }
}

.hero-partners {
  border-top: 1px solid rgba(253, 252, 250, 0.05);
  padding-top: 24px;
  max-width: 500px;
  margin: 0 auto;
}

.hero-partners .partner-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.hero-partners .partner-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* Vision Cards */
.vision-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 155, 39, 0.06);
  border: 1px solid var(--border-color);
  color: var(--gold-light);
}

.icon-circle.gold { color: var(--gold-light); border-color: rgba(197, 155, 39, 0.3); background: rgba(197, 155, 39, 0.08); }
.icon-circle.red { color: #f87171; border-color: rgba(179, 61, 38, 0.3); background: rgba(179, 61, 38, 0.08); }
.icon-circle.green { color: #4ade80; border-color: rgba(38, 99, 59, 0.3); background: rgba(38, 99, 59, 0.08); }
.icon-circle.blue { color: #60a5fa; border-color: rgba(30, 77, 117, 0.3); background: rgba(30, 77, 117, 0.08); }

.vision-card h3 {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 600;
}

/* Pivotal Moment */
.pivotal-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 992px) {
  .pivotal-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }
}

.pivotal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.pivotal-list li {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pivotal-list .bullet {
  min-width: 8px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  margin-top: 8px;
}

.pivotal-highlight {
  padding: 40px;
  background: rgba(179, 61, 38, 0.03);
  border-left: 3px solid var(--red-accent);
}

.pivotal-highlight:hover {
  background: rgba(179, 61, 38, 0.06);
}

.highlight-text {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
}

/* Theme Cards & Pillars */
.theme-card {
  padding: 32px;
  text-align: center;
}

.theme-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.theme-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.pillar-grid {
  gap: 16px;
}

.pillar-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

@media (max-width: 600px) {
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-num {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(197, 155, 39, 0.2);
  line-height: 1;
}

.pillar-card:hover .pillar-num {
  color: var(--gold-primary);
}

.pillar-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
}

.pillar-card p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Credibility Section */
.convenience-grid {
  margin-top: 40px;
}

.convenience-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.conv-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(253, 252, 250, 0.03);
  border: 1.5px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.convenience-card h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
}

.convenience-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Event Programme */
.schedule-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  background: rgba(253, 252, 250, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--text-dark);
}

.programme-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.programme-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 24px;
  background: rgba(26, 22, 19, 0.3);
  border: 1px solid rgba(197, 155, 39, 0.08);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.programme-item:hover {
  background: rgba(26, 22, 19, 0.55);
  border-color: var(--border-color-hover);
  transform: translateX(4px);
}

.prog-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(197, 155, 39, 0.06);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  min-width: 80px;
  height: 80px;
  text-align: center;
  padding: 6px;
}

.prog-date-badge .day {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.prog-date-badge .month {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.prog-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.milestone-badge {
  align-self: flex-start;
  background: var(--red-accent);
  color: var(--text-light);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.prog-info h3 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
}

.prog-info .details {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.prog-info .meta-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-top: 4px;
}

@media (max-width: 576px) {
  .programme-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .prog-date-badge {
    flex-direction: row;
    height: auto;
    width: 100%;
    min-width: auto;
    padding: 10px;
    gap: 8px;
  }
  
  .prog-date-badge .day {
    font-size: 1.2rem;
  }
}

/* Stats Counter Section */
.stats-grid {
  margin-bottom: 40px;
}

.stat-card {
  padding: 30px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-body);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  display: block;
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.profile-cards-grid .profile-card {
  padding: 30px;
}

.profile-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.profile-card p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Why Partner & Benefits */
.benefit-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-icon {
  font-size: 1.8rem;
}

.benefit-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
}

.benefit-card p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Strategic Partners */
.partner-col {
  padding: 32px;
  background: rgba(26, 22, 19, 0.4);
}

.col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(197, 155, 39, 0.1);
  padding-bottom: 12px;
}

.col-header span {
  font-size: 1.3rem;
}

.col-header h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
}

.partner-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partner-col li {
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 14px;
}

.partner-col li::before {
  content: "•";
  color: var(--gold-primary);
  position: absolute;
  left: 0;
}

.footnote {
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Pricing Investment Table */
.pricing-table {
  align-items: stretch;
}

.pricing-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  background: rgba(26, 22, 19, 0.4);
}

.pricing-card.featured {
  border: 1.5px solid var(--gold-primary);
  background: rgba(197, 155, 39, 0.04);
}

.featured-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold-primary);
  color: var(--text-dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}

.badge-tier {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.pricing-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
}

.pricing-card .price {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.pricing-card .features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 10px 0;
  flex-grow: 1;
}

.pricing-card .features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 18px;
  line-height: 1.4;
}

.pricing-card .features li::before {
  content: "✓";
  color: var(--gold-primary);
  position: absolute;
  left: 0;
}

/* Roadmap timeline */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 17px;
  width: 1px;
  height: 100%;
  background: var(--border-color);
}

.timeline-step {
  position: relative;
  margin-bottom: 40px;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.step-num {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 2;
  transition: var(--transition-smooth);
}

.timeline-step:hover .step-num {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  box-shadow: 0 0 10px rgba(197, 155, 39, 0.2);
}

.highlight-step .step-num {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--text-dark);
}

.step-content {
  padding: 24px;
  background: rgba(26, 22, 19, 0.3);
  border: 1px solid rgba(197, 155, 39, 0.05);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.timeline-step:hover .step-content {
  border-color: var(--border-color-hover);
  background: rgba(26, 22, 19, 0.5);
}

.highlight-step .step-content {
  border: 1px solid rgba(197, 155, 39, 0.25);
  background: rgba(197, 155, 39, 0.03);
}

.step-content h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Testimonials */
.testimonial-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.quote-mark {
  font-family: var(--font-title);
  font-size: 4rem;
  color: var(--gold-primary);
  opacity: 0.15;
  line-height: 0;
  margin-top: 15px;
  display: block;
}

.quote-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  font-style: italic;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-author .line {
  width: 24px;
  height: 1px;
  background: var(--gold-primary);
}

.quote-author h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
}

.quote-author p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* FAQ accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: rgba(26, 22, 19, 0.3);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--border-color-hover);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
}

.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--gold-light);
  transition: var(--transition-smooth);
}

.faq-icon::before {
  top: 7px;
  left: 0;
  width: 100%;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 100%;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-icon::before {
  transform: rotate(180deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-panel p {
  padding: 0 24px 20px 24px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Contact Section & Form */
.contact-box {
  display: grid;
  gap: 40px;
  padding: 40px;
}

@media (min-width: 992px) {
  .contact-box {
    grid-template-columns: 1.1fr 1fr;
    padding: 60px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 32px;
}

.contact-footer-brand {
  margin-top: auto;
  padding-top: 20px;
}

.contact-footer-brand .logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.section-contact .section-container {
  max-width: 1000px;
}

.contact-info .subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--red-accent);
  text-transform: uppercase;
}

.contact-info h2 {
  font-size: 2rem;
  line-height: 1.3;
}

.contact-info p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.detail-item a {
  color: var(--text-light);
}

.detail-item a:hover {
  color: var(--gold-primary);
}

.contact-form-wrap h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-form-wrap p {
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: rgba(15, 13, 11, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(197, 155, 39, 0.1);
}

.form-group select option {
  background: var(--bg-dark);
  color: var(--text-light);
}

.contact-form-wrap button {
  width: 100%;
  margin-top: 10px;
}

/* Footer Bottom */
.main-footer {
  background: #090807;
  padding: 30px 0;
  border-top: 1px solid rgba(253, 252, 250, 0.03);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: center;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

.footer-bottom p {
  color: var(--text-muted);
}

.footer-links a {
  font-family: var(--font-body);
  color: var(--gold-light);
  font-size: 0.8rem;
  border: 1px dashed rgba(197, 155, 39, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  border-color: var(--gold-primary);
  background: rgba(197, 155, 39, 0.05);
}

/* Custom Image Layouts for Vision and Theme */
.vision-layout {
  display: grid;
  gap: 40px;
}

@media (min-width: 992px) {
  .vision-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

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

.vision-image-wrap img {
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 2/3.3; /* beautiful vertical oval proportions */
  border-radius: 200px; /* perfect oval shape matching the slide style */
  border: 3px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  transition: var(--transition-smooth);
}

.vision-image-wrap img:hover {
  border-color: var(--gold-primary);
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(197, 155, 39, 0.25);
}

/* Theme Layout */
.theme-layout {
  display: grid;
  gap: 40px;
}

@media (min-width: 992px) {
  .theme-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }
}

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

.theme-image-wrap img {
  width: 100%;
  max-width: 440px;
  height: auto;
  aspect-ratio: 16/9; /* beautiful horizontal panel shape */
  border-radius: 200px; /* beautiful oval shape matching Slide 4 */
  border: 3px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  transition: var(--transition-smooth);
}

.theme-image-wrap img:hover {
  border-color: var(--gold-primary);
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(197, 155, 39, 0.25);
}

.theme-highlights-vertical {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.theme-highlights-vertical .theme-card {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
}

.theme-highlights-vertical .theme-icon {
  margin-bottom: 0;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(197, 155, 39, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.theme-card-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.theme-card-text p {
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Footer Credit Link - Glowing Pulsing Effect */
.credit-link {
  color: #4299e1; /* brighter initial blue */
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  text-shadow: 
    0 0 4px rgba(66, 153, 225, 0.4),
    0 0 10px rgba(66, 153, 225, 0.6);
  animation: netAidGlow 3s ease-in-out infinite alternate;
}

.credit-link:hover {
  color: #90cdf4; /* light pastel blue on hover */
  text-shadow: 
    0 0 6px rgba(144, 205, 244, 0.7),
    0 0 16px rgba(144, 205, 244, 0.9),
    0 0 26px rgba(144, 205, 244, 0.5);
  text-decoration: none;
}

@keyframes netAidGlow {
  0% {
    text-shadow: 
      0 0 4px rgba(66, 153, 225, 0.3),
      0 0 8px rgba(66, 153, 225, 0.5);
  }
  100% {
    text-shadow: 
      0 0 8px rgba(66, 153, 225, 0.8),
      0 0 20px rgba(66, 153, 225, 1),
      0 0 30px rgba(66, 153, 225, 0.6);
  }
}
