/* ===== CSS RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
  overflow-x: hidden;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== UTILITY ANIMATIONS ===== */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes blink {
  0%,
  100% {
    box-shadow:
      0 2px 8px rgba(0, 0, 0, 0.2),
      0 0 12px rgba(239, 68, 68, 0.6);
  }
  50% {
    box-shadow:
      0 2px 8px rgba(0, 0, 0, 0.2),
      0 0 20px rgba(239, 68, 68, 1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* All styles scoped under parent class to avoid conflicts */
/* All styles scoped under parent class to avoid conflicts */
.back-to-event-button {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
}

.back-to-event-button .button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #db2777;
  text-decoration: none;
  border-radius: 9999px;
  border: 2px solid #fbcfe8;
  padding: 6px 15px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.back-to-event-button .button-link:hover {
  background: #fdf2f8;
  border-color: #f9a8d4;
}

.back-to-event-button .button-link:active {
  transform: scale(0.98);
}

.back-to-event-button .arrow-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.back-to-event-button .button-text {
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .back-to-event-button .button-link {
    font-size: 0.8125rem;
    padding: 6px 15px;
  }

  .back-to-event-button .arrow-icon {
    width: 1.125rem;
    height: 1.125rem;
  }
}

/* Focus state for accessibility */
.back-to-event-button .button-link:focus {
  outline: 2px solid #db2777;
  outline-offset: 2px;
}
.whatsapp-chat-button .chat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #22c55e;
  color: #ffffff;
  text-decoration: none;
  border-radius: 9999px;
  padding: 7px 15px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.whatsapp-chat-button .chat-link:hover {
  background: #16a34a;
  transform: scale(1.05);
}

.whatsapp-chat-button .chat-link:active {
  transform: scale(0.98);
}

.whatsapp-chat-button .whatsapp-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.whatsapp-chat-button .chat-text {
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .whatsapp-chat-button .chat-link {
    font-size: 0.8125rem;
    padding: 0.5rem 0.875rem;
  }

  .whatsapp-chat-button .whatsapp-icon {
    width: 1.125rem;
    height: 1.125rem;
  }
}

/* Focus state for accessibility */
.whatsapp-chat-button .chat-link:focus {
  outline: 2px solid #22c55e;
  outline-offset: 2px;
}

.header-navigation .nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1.25rem 0;
  backdrop-filter: blur(12px);
    
  transition: all 0.3s ease;
}
.header-navigation .nav-bar.header--scrolled {
  padding: 1rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

/* Scrolled state - add this class to nav-bar via JS if needed */
.header-navigation .nav-bar.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

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

/* Logo Section */
.header-navigation .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-navigation .logo-image {
  height: 2.5rem;
  transition: height 0.3s ease;
}

.header-navigation .nav-bar.scrolled .logo-image {
  height: 2rem;
}

/* Navigation Links - Desktop */
.header-navigation .nav-links {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.header-navigation .nav-link {
  color: #374151;
  text-decoration: none;
  font-size: 0.8125rem;
  white-space: nowrap;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
}

.header-navigation .nav-link:hover {
  color: #ec4899;
}

.header-navigation .nav-separator {
  color: #d1d5db;
  font-size: 0.75rem;
}

/* Awards Button */
.header-navigation .awards-link {
  color: #374151;
  font-size: 0.8125rem;
  font-weight: 600;
  background: #fffbeb;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid #fde68a;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
}

.header-navigation .awards-link:hover {
  background: #fef3c7;
  border-color: #fcd34d;
  color: #92400e;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

/* WhatsApp Button */
.header-navigation .whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #22c55e;
  color: #ffffff;
  padding: 0.625rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-right: 0.75rem;
}

.header-navigation .whatsapp-button:hover {
  background: #16a34a;
  transform: scale(1.05);
}

.header-navigation .whatsapp-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Mobile Actions */
.header-navigation .mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-navigation .whatsapp-button-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  background: #22c55e;
  color: #ffffff;
  padding: 0;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-navigation .whatsapp-button-mobile svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.header-navigation .whatsapp-button-mobile:hover {
  background: #16a34a;
  transform: scale(1.05);
}

.header-navigation .register-button {
  background: #ec4899;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.header-navigation .register-button:hover {
  background: #db2777;
}

/* Desktop - Show navigation links, hide mobile actions */
@media (min-width: 1024px) {
  .header-navigation .nav-links {
    display: flex;
  }

  .header-navigation .mobile-actions {
    display: none;
  }

  .header-navigation .whatsapp-button {
    display: inline-flex;
  }
}

/* Mobile - Hide navigation links, show mobile actions */
@media (max-width: 1023px) {
  .header-navigation .nav-links {
    display: none;
  }

  .header-navigation .mobile-actions {
    display: flex;
  }

  .header-navigation .whatsapp-button {
    display: none;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-navigation .nav-container {
    padding: 0 1rem;
  }

  .header-navigation .logo-image {
    height: 2rem;
  }

  .header-navigation .nav-bar.scrolled .logo-image {
    height: 1.75rem;
  }
}

.tfm-award {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.6;
}

.tfm-award *,
.tfm-award *::before,
.tfm-award *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero Section */
.tfm-award .hero-section {
  position: relative;
  padding: 11rem 0 6rem;
  overflow: hidden;
  background: linear-gradient(to bottom right, #fff1f2, #fce7f3, #ffe4e6);
}

/* Glowing Effects */
.tfm-award .glow-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(251, 207, 232, 0.5),
    rgba(253, 164, 175, 0.4),
    transparent
  );
  opacity: 0.7;
  filter: blur(80px);
}

.tfm-award .glow-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(254, 215, 170, 0.45),
    rgba(251, 207, 232, 0.35),
    transparent
  );
  opacity: 0.65;
  filter: blur(80px);
}

.tfm-award .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.tfm-award .content {
  text-align: center;
  max-width: 80rem;
  margin: -4rem auto 0;
}

/* Date Badge */
.tfm-award .date-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #fbcfe8;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.tfm-award .date-badge span {
  font-size: 0.875rem;
  font-weight: 700;
  color: #db2777;
}

/* Heading */
.tfm-award .heading {
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.tfm-award .heading-main {
  font-weight: 700;
  font-size: 90px;
  background: linear-gradient(to bottom right, #db2777, #f43f5e, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "sans-serif";
  display: block;
  filter: drop-shadow(0 2px 8px rgba(236, 72, 153, 0.15))
    drop-shadow(0 4px 16px rgba(244, 114, 182, 0.1));
}

.tfm-award .heading-sub {
  font-weight: 600;
  font-size: 58px;
  font-family: "sans-serif";
  background: linear-gradient(to bottom right, #f43f5e, #f9a8d4, #fda4af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-top: 0.75rem;
  padding-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  filter: drop-shadow(0 2px 6px rgba(236, 72, 153, 0.12));
}

/* Tagline */
.tfm-award .tagline {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 2.5rem;
}

/* CTA Button */
.tfm-award .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(to right, #ec4899, #f43f5e, #ec4899);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.tfm-award .cta-button:hover {
  background: linear-gradient(to right, #db2777, #e11d48, #db2777);
  transform: scale(1.05);
  box-shadow:
    0 20px 25px -5px rgba(236, 72, 153, 0.5),
    0 10px 10px -5px rgba(236, 72, 153, 0.4);
}

.tfm-award .trophy-icon {
  width: 20px;
  height: 20px;
}

/* Pricing Section */
.tfm-award .pricing-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

.tfm-award .pricing-box {
  background: linear-gradient(to bottom right, #fdf2f8, #faf5ff);
  border-radius: 1rem;
  padding: 2rem;
  border: 2px solid #f9a8d4;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 320px;
  position: relative;
}

.tfm-award .early-bird-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #ec4899;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.tfm-award .pricing-label {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.75rem;
}

.tfm-award .pricing-content {
  text-align: center;
  margin-bottom: 0.5rem;
}

.tfm-award .price-old {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9ca3af;
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.tfm-award .price-current {
  font-size: 3rem;
  font-weight: 700;
  color: #ec4899;
}

.tfm-award .price-note {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
  margin-top: 0.75rem;
}

/* Contact Section */
.tfm-award .contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.tfm-award .contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4b5563;
}

.tfm-award .contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.tfm-award .contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tfm-award .contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.tfm-award .contact-link:hover {
  color: #db2777;
}

.tfm-award .contact-icon {
  width: 16px;
  height: 16px;
  color: #ec4899;
}

.tfm-award .contact-link:hover .contact-icon {
  color: #db2777;
}

.tfm-award .copy-email-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.tfm-award .copy-email-btn .copy-icon {
  flex-shrink: 0;
  color: #99A1AF;
  transition: color 0.2s;
}

.tfm-award .copy-email-btn:hover .copy-icon {
  color: #ec4899;
}

.tfm-award .copy-feedback {
  margin-left: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #059669;
  opacity: 0;
  transition: opacity 0.2s;
}

.tfm-award .copy-feedback.copy-feedback--visible {
  opacity: 1;
}

.tfm-award .divider {
  display: none;
  width: 4px;
  height: 4px;
  background: #d1d5db;
  border-radius: 50%;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .tfm-award .contact-links {
    flex-direction: row;
    gap: 1rem;
  }

  .tfm-award .divider {
    display: block;
  }

  .tfm-award .pricing-wrapper {
    flex-direction: row;
  }

  .tfm-award .tagline {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .tfm-award .hero-section {
    padding: 8rem 0 4rem;
  }

  .tfm-award .content {
    margin-top: -2rem;
  }

  .tfm-award .heading-main {
    font-size: 60px;
  }

  .tfm-award .heading-sub {
    font-size: 38px;
  }

  .tfm-award .tagline {
    font-size: 1.25rem;
  }

  .tfm-award .cta-button {
    font-size: 1rem;
    padding: 1rem 2rem;
    margin-bottom: 1rem;
  }

  .tfm-award .glow-top,
  .tfm-award .glow-bottom {
    width: 500px;
    height: 500px;
  }
}

@media (max-width: 480px) {
  .tfm-award .container {
    padding: 0 1rem;
  }
  .sticky-footer__container{
    flex-wrap: wrap;
  }
  .awards-header-bar .contact-wrapper{
    flex-direction: row !important;
  }
  .header-navigation .logo-image{
    width: 180px;
    height: auto;
  }
  .tfm-award .heading-main {
    font-size: 48px;
  }

  .tfm-award .heading-sub {
    font-size: 32px;
  }

  .tfm-award .tagline {
    font-size: 1.125rem;
  }

  .tfm-award .pricing-box {
    padding: 1.5rem;
  }

  .tfm-award .price-current {
    font-size: 2.5rem;
  }
}

/* All styles scoped under parent class to avoid conflicts */
.awards-overview-section {
  padding: 3rem 0;
  background: linear-gradient(
    to bottom,
    #ffffff,
    rgba(250, 245, 255, 0.2),
    #ffffff
  );
  position: relative;
  overflow: hidden;
}

/* Background decorations */
.awards-overview-section .bg-decoration-left {
  position: absolute;
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(
    circle,
    rgba(251, 207, 232, 0.4),
    rgba(243, 232, 255, 0.3)
  );
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.awards-overview-section .bg-decoration-right {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(
    circle,
    rgba(255, 228, 230, 0.4),
    rgba(251, 207, 232, 0.3)
  );
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.awards-overview-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

/* Header Section */
.awards-overview-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.awards-overview-section .badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(to right, #fce7f3, #f3e8ff);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.awards-overview-section .badge-text {
  font-size: 0.875rem;
  font-weight: 700;
  background: linear-gradient(to right, #db2777, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.awards-overview-section .section-title {
  font-size: 3.75rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 2rem 0;
}

/* Content Card */
.awards-overview-section .content-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 4rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  position: relative;
  overflow: hidden;
}

/* Corner decorations */
.awards-overview-section .corner-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(
    to bottom right,
    rgba(251, 207, 232, 0.3),
    transparent
  );
  border-radius: 0 0 100% 0;
}

.awards-overview-section .corner-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: linear-gradient(
    to top left,
    rgba(243, 232, 255, 0.3),
    transparent
  );
  border-radius: 100% 0 0 0;
}

/* Quote icon */
.awards-overview-section .quote-icon {
  position: absolute;
  top: 2rem;
  left: 2rem;
  opacity: 0.1;
  width: 80px;
  height: 80px;
}

/* Text content */
.awards-overview-section .content-wrapper {
  position: relative;
  z-index: 10;
}

.awards-overview-section .content-text {
  font-size: 1.5rem;
  line-height: 1.75;
  color: #374151;
  text-align: center;
  font-weight: 300;
  margin-bottom: 2rem;
}

.awards-overview-section .content-text strong {
  font-weight: 700;
  color: #111827;
}

.awards-overview-section .gradient-text {
  font-weight: 700;
  background: linear-gradient(to right, #db2777, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Divider */
.awards-overview-section .divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #f9a8d4, transparent);
  margin: 2rem 0;
}

/* Responsive styles */
@media (max-width: 768px) {
  .awards-overview-section {
    padding: 2rem 0;
  }

  .awards-overview-section .container {
    padding: 0 1rem;
  }

  .awards-overview-section .section-title {
    font-size: 3rem;
  }

  .awards-overview-section .content-card {
    padding: 2.5rem 1.5rem;
  }

  .awards-overview-section .content-text {
    font-size: 1.25rem;
  }

  .awards-overview-section .quote-icon {
    width: 60px;
    height: 60px;
    top: 1rem;
    left: 1rem;
  }

  .awards-overview-section .corner-top-left,
  .awards-overview-section .corner-bottom-right {
    width: 6rem;
    height: 6rem;
  }

  .awards-overview-section .bg-decoration-left,
  .awards-overview-section .bg-decoration-right {
    width: 16rem;
    height: 16rem;
  }
}

@media (max-width: 480px) {
  .awards-overview-section .section-title {
    font-size: 2.5rem;
  }

  .awards-overview-section .content-card {
    padding: 2rem 1.25rem;
  }

  .awards-overview-section .content-text {
    font-size: 1.125rem;
  }

  .awards-overview-section .quote-icon {
    width: 50px;
    height: 50px;
  }
}

/* All styles scoped under parent class to avoid conflicts */
.why-nominate-section {
  padding: 2.5rem 0;
  background: #ffffff;
}

.why-nominate-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.why-nominate-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-nominate-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1rem 0;
}

/* Card Grid */
.why-nominate-section .card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Individual Card */
.why-nominate-section .card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 2px solid #f3f4f6;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.why-nominate-section .card:hover {
  border-color: #fbcfe8;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Gradient Accent Top */
.why-nominate-section .card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.why-nominate-section .card-accent-1 {
  background: linear-gradient(to right, #ec4899, #f43f5e);
}

.why-nominate-section .card-accent-2 {
  background: linear-gradient(to right, #a855f7, #ec4899);
}

.why-nominate-section .card-accent-3 {
  background: linear-gradient(to right, #f43f5e, #ec4899);
}

.why-nominate-section .card-accent-4 {
  background: linear-gradient(to right, #ec4899, #a855f7);
}

/* Icon Container */
.why-nominate-section .icon-wrapper {
  display: inline-flex;
  padding: 1rem;
  border-radius: 1rem;
  width: 100%;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.why-nominate-section .card:hover .icon-wrapper {
  transform: scale(1.1);
}

.why-nominate-section .icon-bg-1 {
  background: linear-gradient(to bottom right, #ec4899, #f43f5e);
}

.why-nominate-section .icon-bg-2 {
  background: linear-gradient(to bottom right, #a855f7, #ec4899);
}

.why-nominate-section .icon-bg-3 {
  background: linear-gradient(to bottom right, #f43f5e, #ec4899);
}

.why-nominate-section .icon-bg-4 {
  background: linear-gradient(to bottom right, #ec4899, #a855f7);
}

.why-nominate-section .icon {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

/* Card Title */
.why-nominate-section .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.75rem 0;
}

/* Card Description */
.why-nominate-section .card-description {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
  .why-nominate-section .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-nominate-section .section-title {
    font-size: 3.125rem;
  }
}

@media (min-width: 1024px) {
  .why-nominate-section .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  .why-nominate-section .container {
    padding: 0 1rem;
  }

  .why-nominate-section .section-title {
    font-size: 2.25rem;
  }

  .why-nominate-section .card {
    padding: 1.25rem;
  }
}

/* All styles scoped under parent class to avoid conflicts */
.award-categories-section {
  padding: 2.5rem 0;
  background: linear-gradient(to bottom, #ffffff, rgba(253, 242, 248, 0.3));
}

.award-categories-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.award-categories-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.award-categories-section .badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #fce7f3;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.award-categories-section .badge-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #db2777;
}

.award-categories-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1rem 0;
}

.award-categories-section .highlight {
  color: #ec4899;
}

/* Card Grid */
.award-categories-section .card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Individual Card */
.award-categories-section .card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: box-shadow 0.3s ease;
}

.award-categories-section .card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Card borders */
.award-categories-section .card-pink {
  border: 2px solid #fbcfe8;
}

.award-categories-section .card-purple {
  border: 2px solid #e9d5ff;
}

.award-categories-section .card-rose {
  border: 2px solid #fecdd3;
}

/* Top accent line */
.award-categories-section .card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 1.5rem 1.5rem 0 0;
}

.award-categories-section .accent-pink {
  background: linear-gradient(to right, #f9a8d4, #fda4af);
}

.award-categories-section .accent-purple {
  background: linear-gradient(to right, #c084fc, #f9a8d4);
}

.award-categories-section .accent-rose {
  background: linear-gradient(to right, #fda4af, #f9a8d4);
}

/* Card Header */
.award-categories-section .card-header {
  margin-bottom: 1.5rem;
}

.award-categories-section .icon-wrapper {
  display: inline-flex;
  padding: 1rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.award-categories-section .icon-bg-pink {
  background: linear-gradient(to bottom right, #ec4899, #f43f5e);
}

.award-categories-section .icon-bg-purple {
  background: linear-gradient(to bottom right, #a855f7, #ec4899);
}

.award-categories-section .icon-bg-rose {
  background: linear-gradient(to bottom right, #f43f5e, #ec4899);
}

.award-categories-section .icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
}

.award-categories-section .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.5rem 0;
}

.award-categories-section .card-description {
  font-size: 0.875rem;
  color: #4b5563;
  margin: 0 0 1.5rem 0;
}

/* Award List */
.award-categories-section .award-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.award-categories-section .award-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: background-color 0.3s ease;
}

.award-categories-section .award-item:hover {
  background: #fef2f2;
}

.award-categories-section .card-pink .award-item:hover {
  background: #fdf2f8;
}

.award-categories-section .card-purple .award-item:hover {
  background: #faf5ff;
}

.award-categories-section .card-rose .award-item:hover {
  background: #fff1f2;
}

.award-categories-section .checkmark {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.award-categories-section .checkmark-pink {
  color: #ec4899;
}

.award-categories-section .checkmark-purple {
  color: #a855f7;
}

.award-categories-section .checkmark-rose {
  color: #f43f5e;
}

.award-categories-section .award-text {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.7;
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
  .award-categories-section .section-title {
    font-size: 3.125rem;
  }
}

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

@media (max-width: 480px) {
  .award-categories-section .container {
    padding: 0 1rem;
  }

  .award-categories-section .section-title {
    font-size: 2rem;
  }

  .award-categories-section .card {
    padding: 1.5rem;
  }

  .award-categories-section .card-title {
    font-size: 1.25rem;
  }
}

/* All styles scoped under parent class to avoid conflicts */
.entry-guidelines-section {
  padding: 2.5rem 0;
  background: linear-gradient(
    to bottom,
    #ffffff,
    rgba(250, 245, 255, 0.2),
    #ffffff
  );
}

.entry-guidelines-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.entry-guidelines-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.entry-guidelines-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1rem 0;
}

.entry-guidelines-section .highlight {
  color: #ec4899;
}

/* Card Grid */
.entry-guidelines-section .card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

/* Individual Card */
.entry-guidelines-section .card {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.entry-guidelines-section .card:hover {
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Card Title */
.entry-guidelines-section .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1.5rem 0;
}

/* List */
.entry-guidelines-section .guideline-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.entry-guidelines-section .guideline-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* Checkmark Icons */
.entry-guidelines-section .checkmark {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.entry-guidelines-section .checkmark-pink {
  color: #ec4899;
}

.entry-guidelines-section .checkmark-purple {
  color: #a855f7;
}

/* Text */
.entry-guidelines-section .guideline-text {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
  .entry-guidelines-section .section-title {
    font-size: 3.125rem;
  }
}

@media (min-width: 1024px) {
  .entry-guidelines-section .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .entry-guidelines-section .container {
    padding: 0 1rem;
  }

  .entry-guidelines-section .section-title {
    font-size: 2.25rem;
  }

  .entry-guidelines-section .card {
    padding: 1.5rem;
  }

  .entry-guidelines-section .card-title {
    font-size: 1.25rem;
  }
}

/* All styles scoped under parent class to avoid conflicts */
.judging-process-section {
  padding: 2.5rem 0;
  background: linear-gradient(to bottom, #ffffff, rgba(250, 245, 255, 0.3));
}

.judging-process-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.judging-process-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.judging-process-section .badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #fce7f3;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.judging-process-section .badge-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #db2777;
}

.judging-process-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1rem 0;
}

/* Card Grid */
.judging-process-section .card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

/* Individual Card */
.judging-process-section .card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.judging-process-section .card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Card borders */
.judging-process-section .card-pink {
  border: 2px solid #fbcfe8;
}

.judging-process-section .card-purple {
  border: 2px solid #e9d5ff;
}

/* Top accent line */
.judging-process-section .card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.judging-process-section .accent-pink {
  background: linear-gradient(to right, #f9a8d4, #fda4af);
}

.judging-process-section .accent-purple {
  background: linear-gradient(to right, #c084fc, #f9a8d4);
}

/* Number Badge */
.judging-process-section .number-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.judging-process-section .badge-pink {
  background: #fce7f3;
}

.judging-process-section .badge-purple {
  background: #f3e8ff;
}

.judging-process-section .number {
  font-size: 1.5rem;
  font-weight: 700;
}

.judging-process-section .number-pink {
  color: #ec4899;
}

.judging-process-section .number-purple {
  color: #a855f7;
}

/* Card Content */
.judging-process-section .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1rem 0;
  padding-right: 4rem;
}

.judging-process-section .card-description {
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
  .judging-process-section .section-title {
    font-size: 3.125rem;
  }

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

@media (max-width: 480px) {
  .judging-process-section .container {
    padding: 0 1rem;
  }

  .judging-process-section .section-title {
    font-size: 2.25rem;
  }

  .judging-process-section .card {
    padding: 1.5rem;
  }

  .judging-process-section .card-title {
    font-size: 1.25rem;
    padding-right: 3.5rem;
  }

  .judging-process-section .number-badge {
    width: 3rem;
    height: 3rem;
  }

  .judging-process-section .number {
    font-size: 1.25rem;
  }
}

/* All styles scoped under parent class to avoid conflicts */
.faq-section {
  padding: 2.5rem 0;
  background: #ffffff;
}

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

/* Header */
.faq-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-section .badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #f3e8ff;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.faq-section .badge-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #9333ea;
}

.faq-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1rem 0;
}

.faq-section .highlight {
  color: #ec4899;
}

/* Accordion Container */
.faq-section .accordion-container {
  max-width: 56rem;
  margin: 0 auto;
}

/* Accordion Item */
.faq-section .accordion-item {
  background: #ffffff;
  border-radius: 1rem;
  border: 2px solid #f3e8ff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-section .accordion-item:hover {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Accordion Header/Trigger */
.faq-section .accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  text-align: left;
  transition: background-color 0.3s ease;
  gap: 1rem;
}

.faq-section .accordion-trigger:hover {
  background-color: rgba(243, 232, 255, 0.5);
}

.faq-section .accordion-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  text-align: left;
  flex: 1;
}

/* Chevron Icon */
.faq-section .accordion-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  color: #a855f7;
}

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

/* Accordion Content */
.faq-section .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-section .accordion-content-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-section .accordion-text {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

/* List styling for last FAQ */
.faq-section .answer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.faq-section .answer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.faq-section .list-bullet {
  color: #ec4899;
  font-weight: 700;
}

.faq-section .note-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-style: italic;
}


/* Responsive Breakpoints */
@media (min-width: 768px) {
  .faq-section .section-title {
    font-size: 3.125rem;
  }

  .faq-section .accordion-trigger {
    padding: 1.5rem;
  }

  .faq-section .accordion-question {
    font-size: 1.125rem;
  }

  .faq-section .accordion-text {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .faq-section .section-title {
    font-size: 2.25rem;
  }

  .faq-section .accordion-trigger {
    padding: 1rem;
  }

  .faq-section .accordion-question {
    font-size: 1rem;
  }

  .faq-section .accordion-text {
    font-size: 0.875rem;
  }

  .faq-section .accordion-content-inner {
    padding: 0 1rem 1rem 1rem;
  }
}

@media (max-width: 480px) {
  .faq-section .container {
    padding: 0 1rem;
  }
}

/* All styles scoped under parent class to avoid conflicts */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, #fce7f3, #f3e8ff, #ffe4e6);
}

.cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

/* Heading */
.cta-section .cta-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1.5rem 0;
}

/* Description */
.cta-section .cta-description {
  font-size: 1.25rem;
  color: #374151;
  margin: 0 auto 2.5rem auto;
  max-width: 42rem;
  line-height: 1.7;
}

/* Button */
.cta-section .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(to right, #ec4899, #f43f5e, #ec4899);
  background-size: 200% 100%;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1.5rem 3rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta-section .cta-button:hover {
  background-position: right center;
  box-shadow:
    0 20px 25px -5px rgba(236, 72, 153, 0.5),
    0 10px 10px -5px rgba(236, 72, 153, 0.4);
  transform: scale(1.1) translateY(-0.5rem);
}

/* Shimmer Effect */
.cta-section .cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-section .cta-button:hover::before {
  left: 100%;
}

/* Button Icons */
.cta-section .button-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.cta-section .button-text {
  position: relative;
  z-index: 1;
}

.cta-section .arrow-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cta-section .cta-button:hover .arrow-icon {
  transform: translateX(0.5rem);
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
  .cta-section .cta-heading {
    font-size: 3.125rem;
  }
}

@media (max-width: 767px) {
  .cta-section {
    padding: 3rem 0;
  }

  .cta-section .cta-heading {
    font-size: 2.25rem;
  }

  .cta-section .cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }

  .cta-section .cta-button {
    font-size: 1rem;
    padding: 1.25rem 2.5rem;
    gap: 0.5rem;
  }

  .cta-section .button-icon,
  .cta-section .arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (max-width: 480px) {
  .cta-section .container {
    padding: 0 1rem;
  }

  .cta-section .cta-heading {
    font-size: 1.875rem;
  }

  .cta-section .cta-description {
    font-size: 1rem;
  }

  .cta-section .cta-button {
    padding: 1rem 2rem;
    width: 100%;
    max-width: 20rem;
  }
}

/* Focus state for accessibility */
.cta-section .cta-button:focus {
  outline: 2px solid #ec4899;
  outline-offset: 4px;
}

/* CTA section contact below Nominate Now */
.cta-contact-wrapper {
  /* margin-top: 2rem; */
  text-align: center;
}

.cta-contact-wrapper .contact-label {
  font-size: 0.9375rem;
  color: #6b7280;
  margin: 0 0 0.75rem 0;
}

.cta-contact-wrapper .cta-contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.cta-contact-wrapper .contact-link {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: inherit;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.cta-contact-wrapper .contact-link:hover {
  color: #ec4899;
  background: rgba(236, 72, 153, 0.08);
}

.cta-contact-wrapper .contact-icon,
.cta-contact-wrapper .copy-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.cta-contact-wrapper .divider {
  color: #d1d5db;
  font-weight: 300;
}

/* ===== FOOTER (BEM) ===== */
.footer {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-top: 1px solid #e5e7eb;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 7rem;
}

.footer__nav {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
}

.footer__nav-item {
  font-size: 12px;
}

.footer__nav-link {
  color: #6b7280;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer__nav-link:hover {
  color: #db2777;
}

.footer__nav-separator {
  color: #d1d5db;
  font-size: 12px;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  stroke: #6b7280;
  fill: none;
  transition: stroke 0.3s ease;
}

.footer__social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.footer__social-link--facebook:hover {
  border-color: #3b5998;
  background: #eff6ff;
}

.footer__social-link--facebook:hover svg {
  stroke: #3b5998;
}

.footer__social-link--linkedin:hover {
  border-color: #0077b5;
  background: #eff6ff;
}

.footer__social-link--linkedin:hover svg {
  stroke: #0077b5;
}

.footer__social-link--instagram:hover {
  border-color: #ec4899;
  background: #fdf2f8;
}

.footer__social-link--instagram:hover svg {
  stroke: #ec4899;
}

.footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #d1d5db, transparent);
  margin-bottom: 0.75rem;
}

.footer__bottom {
  text-align: center;
}

.footer__notice {
  font-size: 10px;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.footer__copyright {
  font-size: 10px;
  color: #374151;
  font-weight: 600;
}
.awards-header-bar .info-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.awards-header-bar .tagline {
  font-size: 0.875rem;
  color: #4b5563;
  margin: 0;
}

.awards-header-bar .separator {
  color: #9ca3af;
}

.awards-header-bar .date-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

/* Contact Info */
.awards-header-bar .contact-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.awards-header-bar .contact-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.awards-header-bar .contact-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.3s ease;
}

.awards-header-bar .contact-link:hover {
  color: #db2777;
}

.awards-header-bar .contact-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: #f9a8d4;
  transition: color 0.3s ease;
}

.awards-header-bar .contact-link:hover .contact-icon {
  color: #db2777;
}

.awards-header-bar .contact-text {
  font-weight: 500;
}

.awards-header-bar .divider {
  color: #d1d5db;
}

/* Right Section - CTA Button */
.awards-header-bar .right-section {
  display: flex;
  align-items: center;
}

.awards-header-bar .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #ec4899, #f43f5e, #ec4899);
  background-size: 200% 100%;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

.awards-header-bar .cta-button:hover {
  background-position: right center;
  box-shadow:
    0 10px 15px -3px rgba(236, 72, 153, 0.5),
    0 4px 6px -2px rgba(236, 72, 153, 0.4);
  transform: scale(1.05);
}

.awards-header-bar .button-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .awards-header-bar .info-row {
    flex-wrap: wrap;
  }

  .awards-header-bar .contact-wrapper {
    flex-wrap: wrap;
  }
}

@media (max-width: 1024px) {
  .awards-header-bar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .awards-header-bar .right-section {
    width: 100%;
  }

  .awards-header-bar .cta-button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .awards-header-bar .container {
    padding: 1rem;
  }

  .awards-header-bar .main-title {
    font-size: 1rem;
  }

  .awards-header-bar .tagline,
  .awards-header-bar .date-text {
    font-size: 0.8125rem;
  }

  .awards-header-bar .contact-link {
    font-size: 0.6875rem;
  }

  .awards-header-bar .info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .awards-header-bar .separator {
    display: none;
  }
}

@media (max-width: 640px) {
  .awards-header-bar .contact-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .awards-header-bar .divider {
    display: none;
  }

  .awards-header-bar .contact-text {
    word-break: break-all;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 10px 0 60px 0;
  }

  .footer__nav-list {
    gap: 1rem;
  }

  .footer__nav-separator {
    display: none;
  }
}

/* ===== STICKY FOOTER CTA (BEM) ===== */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s ease;
}

.sticky-footer--visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-footer__gradient-border {
  height: 4px;
  background: linear-gradient(90deg, #f9a8d4, #fda4af, #c084fc);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.sticky-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.sticky-footer__info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sticky-footer__title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.sticky-footer__title {
  color: #000;
  font-weight: 700;
  font-size: 16px;
}

.sticky-footer__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(90deg, #ef4444, #f97316);
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: blink 1s ease-in-out infinite !important;
}

.sticky-footer__badge-dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.sticky-footer__details {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
}

.sticky-footer__detail {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  color: #4b5563;
}

.sticky-footer__separator {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.sticky-footer__buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sticky-footer__button {
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.sticky-footer__button--primary {
  background: linear-gradient(90deg, #ec4899, #f43f5e);
  color: #fff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sticky-footer__button--primary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.sticky-footer__button--secondary {
  background: transparent;
  color: #e60076;
  border: 2px solid #e60076;
}

.sticky-footer__button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .sticky-footer {
    padding: 15px 8px;
  }

  .sticky-footer__title {
    color: #000;
    font-weight: 700;
    font-size: 16px;
  }

  .sticky-footer__details {
    flex-direction: row;
  }

  .sticky-footer__button {
    padding: 11px 12px;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: 44px;
  }

  .sticky-footer__title-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sticky-footer__detail-text {
    display: none;
  }

  .sticky-footer__container {
    gap: 11px;
  }
}

@media (max-width: 480px) {
  .sticky-footer__buttons {
    width: 100%;
  }

  .sticky-footer__button {
    padding: 8px 12px;
    border-radius: 0.75rem;
    font-weight: 700;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: 38px;
    white-space: nowrap;
    width: 100%;
  }

  .sticky-footer__details {
    padding: 4px 0;
    display: none;
  }

  .sticky-footer__buttons
    button.sticky-footer__button.sticky-footer__button--secondary {
    display: none;
  }
}

/* ===== FLOATING WHATSAPP CTA ===== */
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 95px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: #25d366;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  display: none;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-float__icon {
  display: flex;
  flex-shrink: 0;
}

.whatsapp-float__text {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 0.75rem;
    bottom: 185px;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .whatsapp-float__text {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}


 /* All styles scoped under parent class to avoid conflicts */
 .nomination-form-header {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.nomination-form-header .header-container {
  background: linear-gradient(to right, #ec4899, #f43f5e, #ec4899);
  padding: 1.5rem 2rem;
  border-radius: 1.5rem 1.5rem 0 0;
}

.nomination-form-header .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.nomination-form-header .icon-circle {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nomination-form-header .trophy-icon {
  width: 2.25rem;
  height: 2.25rem;
  color: white;
}

.nomination-form-header .title {
  font-size: 1.65rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 0.375rem;
  line-height: 1.2;
}

.nomination-form-header .subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.nomination-form-header .contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 100%;
  box-sizing: border-box;
}

.nomination-form-header .contact-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
}

.nomination-form-header .contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  text-align: center;
}

.nomination-form-header .contact-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.nomination-form-header .contact-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nomination-form-header .contact-link:hover {
  color: white;
}

.nomination-form-header .contact-icon {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

.nomination-form-header .contact-text {
  font-weight: 500;
}

.nomination-form-header .divider {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

/* Header toggle: show default or success state */
.nomination-form-header.is-success .header-container--default {
  display: none !important;
}

.nomination-form-header:not(.is-success) .header-container--success {
  display: none !important;
}

/* Success state in header (replaces header content on phase 4) */
.nomination-form-header .header-container--success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nomination-form-header .header-container--success .modal-success__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #ec4899;
  border-radius: 50%;
  color: #ec4899;
}

.nomination-form-header .header-container--success .modal-success__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.nomination-form-header .header-container--success .modal-success__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.nomination-form-header .header-container--success .modal-success__message {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 0.5rem;
  line-height: 1.5;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Phase 4 success body: white section (For queries + Done button) */
.tfm-award-phase--success .modal-success__body {
  padding: 2rem 1.5rem;
  background: #fff;
  text-align: center;
  border-radius: 0 0 1.5rem 1.5rem;
}

.tfm-award-phase--success .modal-success__query-label {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  color: #374151;
  font-weight: 500;
}

.tfm-award-phase--success .modal-success__contact {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
}

.tfm-award-phase--success .modal-success__contact-link {
  color: #ec4899;
  text-decoration: underline;
  font-weight: 500;
}

.tfm-award-phase--success .modal-success__contact-link:hover {
  color: #db2777;
}

.tfm-award-phase--success .modal-success__done-btn {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  background: linear-gradient(to right, #ec4899, #f43f5e);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tfm-award-phase--success .modal-success__done-btn:hover {
  background: linear-gradient(to right, #db2777, #e11d48);
  color: #fff;
  transform: scale(1.02);
}

/* Responsive adjustments */
@media (min-width: 640px) {
  .nomination-form-header .contact-section {
      flex-direction: row;
  }
}

@media (max-width: 639px) {
  .nomination-form-header .header-container {
      padding: 1.25rem 1rem;
      border-radius: 12px;
  }

  .nomination-form-header .title {
      font-size: 1.4rem;
  }

  .nomination-form-header .trophy-icon {
      width: 2rem;
      height: 2rem;
  }

  .nomination-form-header .icon-circle {
      padding: 0.6rem;
  }

  .nomination-form-header .contact-links {
      flex-direction: column;
      gap: 0.5rem;
  }

  .nomination-form-header .divider {
      display: none;
  }
}
.nomination-form-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.nomination-form-wrapper .form-container {
  /* padding: 2rem; */
}

.nomination-form-wrapper .form-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nomination-form-wrapper .form-section-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  margin-top: 0.25rem;
}

.nomination-form-wrapper .form-field {
  display: flex;
  flex-direction: column;
}

.nomination-form-wrapper .field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.nomination-form-wrapper .required {
  color: #ef4444;
}

.nomination-form-wrapper .input-wrapper {
  position: relative;
}

.nomination-form-wrapper .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
  pointer-events: none;
}

.nomination-form-wrapper .form-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.nomination-form-wrapper .form-input:focus {
  border-color: #ec4899;
  outline: none;
}

.nomination-form-wrapper .form-input::placeholder {
  color: #9ca3af;
}

.nomination-form-wrapper .form-input:disabled {
  background-color: #f3f4f6;
}

.nomination-form-wrapper .mobile-field-row {
  display: flex;
  gap: 0.5rem;
}

.nomination-form-wrapper .mobile-input-group {
  position: relative;
  flex: 1;
}

.nomination-form-wrapper .check-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: #22c55e;
}

.nomination-form-wrapper .btn-send-otp {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, #ec4899, #f43f5e);
  color: white;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nomination-form-wrapper .btn-send-otp:hover {
  background: linear-gradient(to right, #db2777, #e11d48);
}

.nomination-form-wrapper .btn-send-otp:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.nomination-form-wrapper .verified-badge {
  padding: 0.75rem 1.5rem;
  background-color: #dcfce7;
  color: #15803d;
  font-weight: 600;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nomination-form-wrapper .verified-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.nomination-form-wrapper .otp-section {
  background-color: #fdf2f8;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #fbcfe8;
}

.nomination-form-wrapper .otp-instruction {
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 0.75rem;
}

.nomination-form-wrapper .otp-input-row {
  display: flex;
  gap: 0.5rem;
}

.nomination-form-wrapper .otp-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.nomination-form-wrapper .otp-input:focus {
  border-color: #ec4899;
  outline: none;
}

.nomination-form-wrapper .btn-verify {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, #ec4899, #f43f5e);
  color: white;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nomination-form-wrapper .btn-verify:hover {
  background: linear-gradient(to right, #db2777, #e11d48);
}

.nomination-form-wrapper .otp-error-row {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nomination-form-wrapper .error-text {
  font-size: 0.875rem;
  color: #dc2626;
}

.nomination-form-wrapper .resend-link {
  font-size: 0.875rem;
  color: #ec4899;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.nomination-form-wrapper .resend-link:hover {
  text-decoration: underline;
}

.nomination-form-wrapper .checkbox-wrapper {
  display: flex;
  align-items: center;
}

.nomination-form-wrapper .checkbox-input {
  width: 1rem;
  height: 1rem;
  color: #ec4899;
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  cursor: pointer;
}

.nomination-form-wrapper .checkbox-input:focus {
  outline: 2px solid #ec4899;
  outline-offset: 2px;
}

.nomination-form-wrapper .checkbox-label {
  margin-left: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: #374151;
}

.nomination-form-wrapper .terms-link {
  color: #ec4899;
  font-weight: 600;
  text-decoration: none;
}

.nomination-form-wrapper .terms-link:hover {
  text-decoration: underline;
}

.nomination-form-wrapper .btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to right, #ec4899, #f43f5e, #ec4899);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.nomination-form-wrapper .btn-submit:hover {
  background: linear-gradient(to right, #db2777, #e11d48, #db2777);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.nomination-form-wrapper .btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.nomination-form-wrapper .submit-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.nomination-form-wrapper .spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.nomination-form-wrapper .help-text {
  font-size: 0.875rem;
  text-align: center;
  color: #6b7280;
  margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .nomination-form-wrapper .form-container {
      padding: 0;
  }

  .nomination-form-wrapper .mobile-field-row {
      flex-direction: column;
  }

  .nomination-form-wrapper .btn-send-otp,
  .nomination-form-wrapper .verified-badge {
      width: 100%;
      justify-content: center;
  }

  .nomination-form-wrapper .otp-input-row {
      flex-direction: column;
  }

  .nomination-form-wrapper .btn-verify {
      width: 100%;
  }
}

/* ===== TFM Modal Overlay ===== */
.tfmmodal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.tfmmodal-overlay.active {
  display: flex;
}

.tfmmodal-overlay .tfmmodal {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: tfmModalSlideIn 0.3s ease-out;
}

.tfmmodal-overlay .tfmmodal .tfmmodal__scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #ec4899 #fce7f3;
}

.tfmmodal-overlay .tfmmodal .tfmmodal__scroll::-webkit-scrollbar {
  width: 10px;
}

.tfmmodal-overlay .tfmmodal .tfmmodal__scroll::-webkit-scrollbar-track {
  background: #fce7f3;
  border-radius: 10px;
  margin: 4px 2px;
}

.tfmmodal-overlay .tfmmodal .tfmmodal__scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ec4899, #f43f5e);
  border-radius: 10px;
  border: 2px solid #fce7f3;
}

.tfmmodal-overlay .tfmmodal .tfmmodal__scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #db2777, #ec4899);
}

.tfmmodal-overlay .tfmmodal .tfmmodal__scroll::-webkit-scrollbar-thumb:active {
  background: #be185d;
}

.tfmmodal-overlay .tfmmodal .tfmmodal-phases {
  padding: 1.5rem 2rem 2rem;
}

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

.tfmmodal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0, 0, 0, 0.08);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.tfmmodal-close:hover {
  background: rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
}

@media (max-width: 640px) {
  .tfmmodal-overlay {
    padding: 1rem;
    align-items: center;
    justify-content: center;
  }

  .tfmmodal-overlay .tfmmodal {
    max-height: 90vh;
    border-radius: 12px;
    margin: 0;
  }
}

/* Copy toast feedback */
.copy-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.4);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.copy-toast.copy-toast--visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}