/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Account for fixed navbar */
}

html,
body {
  height: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  line-height: 1.2;
  color: #263238;
  background-image: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(248, 250, 252, 0.95) 50%,
      rgba(241, 245, 249, 0.95) 100%
    ),
    url("disks_background.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  /* Ensure background is always visible */
  background-color: #f8fafc;
}

/* Ensure background image is visible when loaded */
body.background-loaded {
  background-image: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(248, 250, 252, 0.95) 50%,
      rgba(241, 245, 249, 0.95) 100%
    ),
    url("disks_background.webp") !important;
}

/* Fallback for browsers that don't support WebP */
@supports not (background-image: url("disks_background.webp")) {
  body {
    background-image: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.95) 50%,
        rgba(241, 245, 249, 0.95) 100%
      ),
      url("disks_background.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}

/* Ensure background image loads properly */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px);
  z-index: -1;
}

/* Scroll target positioning and highlighting */
#home {
  scroll-margin-top: 100px; /* Top of page */
}

#key-features {
  scroll-margin-top: 50px; /* Center of key-features section */
}

#contact {
  scroll-margin-top: 20px; /* Bottom of page - minimal margin needed */
}

#home:target,
#key-features:target,
#contact:target {
  animation: targetHighlight 2s ease-out;
}

@keyframes targetHighlight {
  0% {
    background: rgba(255, 209, 102, 0.1);
  }
  100% {
    background: transparent;
  }
}

/* Background Animation */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  font-size: 2rem;
  opacity: 0.1;
  animation: float var(--duration, 10s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.floating-element:nth-child(1) {
  top: 10%;
  left: 10%;
}
.floating-element:nth-child(2) {
  top: 20%;
  right: 15%;
}
.floating-element:nth-child(3) {
  bottom: 30%;
  left: 20%;
}
.floating-element:nth-child(4) {
  top: 60%;
  right: 10%;
}
.floating-element:nth-child(5) {
  bottom: 10%;
  right: 30%;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-15px) rotate(3deg);
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Header */
.header {
  padding: 20px 0;
  text-align: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #1f2937;
}

.logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.logo-emoji {
  font-size: 2rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Sticky Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgb(31, 41, 55, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

/* Ensure navbar content is properly contained */
.nav-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

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

.nav-logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 3px;
  font-weight: 700;
  -webkit-text-stroke: 1px rgb(38, 50, 56, 0.5);
  -webkit-text-fill-color: #ffd166;
  text-shadow: 1px 1px rgb(38, 50, 56, 0.5), -1px 1px #263238, 1px -1px #263238,
    -1px -1px #263238;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.nav-link:hover {
  opacity: 1;
  color: #118ab2;
}

.nav-link.active {
  color: #ffd166;
  opacity: 1;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.nav-cta-btn {
  background: linear-gradient(135deg, #ffd166, #06d6a0);
  color: #263238;
  border: none;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 209, 102, 0.3);
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 209, 102, 0.4);
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 20px;
  /* min-height: calc(100vh - 80px); */
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
}

/* Product Section */
.product-section {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image {
  width: 100%;
  height: auto;
  max-width: 350px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
  border-radius: 60px;
  transition: all 0.3s ease;
  animation: productFloat 6s ease-in-out infinite;
}

.product-image:hover {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-emoji {
  font-size: 4rem;
  animation: productSpin 4s ease-in-out infinite;
}

.product-features {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: featureFloat 3s ease-in-out infinite;
}

.feature-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.feature-badge:nth-child(2) {
  animation-delay: 0.5s;
}
.feature-badge:nth-child(3) {
  animation-delay: 1s;
}

.feature-emoji {
  font-size: 1.2rem;
}

.feature-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}

.new-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #f59e0b, #dc2626);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.new-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
  background: linear-gradient(135deg, #d97706, #b91c1c);
}

/* Mobile responsiveness for new badge */
@media (max-width: 768px) {
  .new-badge {
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  /* Adjust scroll margin for mobile */
  #home {
    scroll-margin-top: 80px;
  }

  #key-features {
    scroll-margin-top: 40px;
  }

  #contact {
    scroll-margin-top: 15px;
  }

  /* Mobile navbar and footer adjustments */
  .nav-container,
  .footer-content,
  .footer-bottom {
    padding: 0 15px;
  }

  .navbar {
    padding: 10px 0;
  }

  .footer {
    padding: 2rem 0 1rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
}

@media (max-width: 480px) {
  .new-badge {
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    font-size: 0.65rem;
  }

  /* Adjust scroll margin for small mobile */
  #home {
    scroll-margin-top: 70px;
  }

  #key-features {
    scroll-margin-top: 35px;
  }

  #contact {
    scroll-margin-top: 10px;
  }

  /* Small mobile navbar and footer adjustments */
  .nav-container,
  .footer-content,
  .footer-bottom {
    padding: 0 10px;
  }

  .navbar {
    padding: 8px 0;
  }

  .footer {
    padding: 1.5rem 0 1rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .footer-content {
    gap: 1.5rem;
  }

  /* Mobile feature notice adjustments */
  .feature-notice {
    padding: 1.2rem;
    margin: 0rem 0;
  }

  .feature-notice-icon {
    font-size: 1.25rem;
  }

  .feature-notice-title {
    font-size: 1rem;
  }

  .feature-notice-text {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .new-badge {
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    font-size: 0.65rem;
  }
}

/* Info Cards */
.info-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.card-content {
  flex: 1;
}

.card-title {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #263238;
  margin: 0 0 6px 0;
}

.card-text {
  font-size: 0.8rem;
  color: #263238;
  margin: 0 0 8px 0;
  line-height: 1.4;
  opacity: 0.7;
}

.card-button {
  background: linear-gradient(135deg, #118ab2, #06d6a0);
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(17, 138, 178, 0.3);
}

.redirect-cancel {
  background: #263238;
}

.redirect-cancel:hover {
  background: #37474f;
}

/* Notification Card */
.notification-card {
  position: fixed;
  top: -5px;
  left: 160px;
  background: rgba(255, 209, 102, 0.85);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  padding: 6px 16px;
  box-shadow: 0 8px 25px rgba(255, 209, 102, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 10000;
  animation: slideInRight 0.3s ease-out;
  max-width: 350px;
  opacity: 0.7;
}

/* Ensure all notifications appear above modal */
.notification,
.notification-card,
.newsletter-success-notification,
.redirect-notification,
[class*="notification-"] {
  z-index: 10000 !important;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notification-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.notification-text {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 500;
  color: #263238;
  line-height: 1.3;
}

.notification-close {
  background: none;
  border: none;
  color: #263238;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  background: rgba(38, 50, 56, 0.1);
}

.redirect-countdown {
  font-weight: 700;
  color: #118ab2;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification-card.hide {
  animation: slideOutRight 0.3s ease-in forwards;
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Redirect Notification - Professional Style */
.redirect-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  transform: translateX(100%) scale(0.8);
  background: white;
  color: #333;
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.redirect-notification.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.redirect-notification .notification-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.redirect-notification .notification-icon {
  font-size: 2.5rem;
  animation: spin 2s linear infinite;
}

.redirect-notification .notification-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.notification-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #333;
}

.notification-subtitle {
  font-size: 0.9rem;
  color: #666;
}

.redirect-notification .notification-loader {
  width: 20px;
  height: 20px;
  border: 3px solid #e1e5e9;
  border-top: 3px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Mobile responsiveness for redirect notification */
@media (max-width: 768px) {
  .redirect-notification {
    top: 15px;
    right: 15px;
    left: 15px;
    min-width: auto;
    max-width: none;
    padding: 18px 20px;
  }
}

@media (max-width: 480px) {
  .redirect-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    padding: 15px 18px;
    font-size: 0.9rem;
  }

  .redirect-notification .notification-icon {
    font-size: 2rem;
  }

  .notification-title {
    font-size: 1.1rem;
  }

  .notification-subtitle {
    font-size: 0.8rem;
  }
}

/* Professional Countdown Card */
.professional-countdown-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 24px;
  padding: 28px;
  margin-bottom: 0px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.professional-countdown-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 209, 102, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(118, 138, 178, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.professional-countdown-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 209, 102, 0.3),
    transparent
  );
}

/* Launch Date Display */
.launch-date-display {
  text-align: center;
  margin: 20px 0;
  padding: 12px 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 209, 102, 0.1),
    rgba(118, 138, 178, 0.1)
  );
  border-radius: 16px;
  border: 1px solid rgba(255, 209, 102, 0.2);
  box-shadow: 0 4px 12px rgba(255, 209, 102, 0.1);
  position: relative;
  z-index: 2;
}

.launch-date-text {
  color: #4a5568;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.8;
}

.launch-date-value {
  color: #d69e2e;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 8px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Coming Soon Badge */
.coming-soon-badge {
  background: linear-gradient(135deg, #2d3748, #4a5568);
  color: white;
  padding: 12px 24px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(45, 55, 72, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.coming-soon-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(45, 55, 72, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.coming-soon-badge span {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Progress Bar */
.progress-container {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.progress-percentage {
  position: absolute;
  top: -25px;
  right: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4a5568;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd166, #f59e0b);
  border-radius: 12px;
  width: 0%;
  animation: progressPulse 2s ease-in-out infinite;
  transition: all 0.5s ease;
  box-shadow: 0 2px 8px rgba(255, 209, 102, 0.4);
  position: relative;
}

/* Progress color transitions based on completion */
.progress-fill.progress-early {
  background: linear-gradient(90deg, #10b981, #059669);
}

.progress-fill.progress-mid {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.progress-fill.progress-late {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
}

.progress-text {
  text-align: center;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #2d3748;
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

/* Professional Countdown */
.countdown-professional {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  z-index: 2;
}

/* 🏆 KONKURSO SEKCIJA */
.contest-section {
  margin-top: 30px;
  padding: 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
  color: white;
  position: relative;
  overflow: hidden;
}

.contest-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: contestGlow 8s ease-in-out infinite;
}

@keyframes contestGlow {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}

.contest-header {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.contest-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contest-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 400;
}

.contest-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 25px;
  color: #2d3748;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contest-prize {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: linear-gradient(135deg, #ffd166, #f59e0b);
  border-radius: 12px;
  color: white;
}

.prize-icon {
  font-size: 2.5rem;
  margin-right: 15px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.prize-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.prize-text p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.contest-rules {
  margin-bottom: 20px;
}

.contest-rules h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #4a5568;
}

.contest-rules ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contest-rules li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: #4a5568;
  border-bottom: 1px solid #e2e8f0;
}

.contest-rules li:last-child {
  border-bottom: none;
}

.contest-timer {
  text-align: center;
  margin-bottom: 20px;
  padding: 12px;
  background: #f7fafc;
  border-radius: 10px;
  border: 2px solid #e2e8f0;
}

.contest-timer p {
  margin: 0;
  font-size: 0.9rem;
  color: #4a5568;
}

.contest-timer span {
  font-weight: 600;
  color: #667eea;
}

.contest-button {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.contest-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

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

.contest-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.contest-button:active {
  transform: translateY(0);
}

.button-icon {
  font-size: 1.3rem;
  animation: contestPulse 2s ease-in-out infinite;
}

@keyframes contestPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.button-text {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Responsive contest section */
@media (max-width: 768px) {
  .contest-section {
    padding: 20px;
    margin-top: 25px;
  }

  .contest-title {
    font-size: 1.5rem;
  }

  .contest-card {
    padding: 20px;
  }

  .prize-icon {
    font-size: 2rem;
  }

  .contest-button {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

/* 🏆 KONKURSO INLINE SEKCIJA - Enhanced Aesthetic Design */
.contest-inline {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  padding: 32px;
  margin: 2rem 0;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.contest-inline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd166, #06d6a0, #118ab2);
  border-radius: 20px 20px 0 0;
}

.contest-inline::after {
  content: "🏆";
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.5rem;
  opacity: 0.1;
  z-index: 0;
  animation: trophyFloat 3s ease-in-out infinite;
}

@keyframes trophyFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-3px) rotate(5deg);
  }
}

.contest-inline:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  border-color: rgba(6, 214, 160, 0.3);
}

.contest-inline-content {
  position: relative;
  z-index: 2;
}

.contest-inline-header {
  text-align: center;
  margin-bottom: 24px;
}

.contest-inline-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1f2937, #374151);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.025em;
  position: relative;
}

.contest-inline-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 400;
  line-height: 1.5;
  max-width: 400px;
  margin: 0 auto;
}

.contest-inline-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.contest-inline-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  transition: none;
  position: relative;
  overflow: visible;
}

.contest-inline-card::before {
  display: none;
}

.contest-standalone-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e0;
}

.contest-inline-prize {
  text-align: center;
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(145deg, #f8fafc, #f1f5f9);
  border-radius: 16px;
  border: 1px solid rgba(6, 214, 160, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 12px rgba(6, 214, 160, 0.1);
}

.contest-inline-prize:hover {
  transform: translateY(-2px);
  background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
  border-color: rgba(6, 214, 160, 0.4);
  box-shadow: 0 8px 20px rgba(6, 214, 160, 0.15);
}

.contest-inline-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  opacity: 1;
  transition: all 0.3s ease;
}

.contest-inline-prize:hover .contest-inline-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.contest-inline-text h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contest-inline-text p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.contest-inline-rules h5 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #374151;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contest-inline-rules ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contest-inline-rules li {
  padding: 12px 0;
  font-size: 0.875rem;
  color: #6b7280;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  line-height: 1.4;
  font-weight: 500;
  flex-wrap: wrap;
}

.contest-inline-rules li:last-child {
  border-bottom: none;
}

.rule-icon {
  margin-right: 8px;
  font-size: 0.875rem;
  flex-shrink: 0;
  color: #10b981;
}

.instagram-link {
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
  margin: 0 4px;
}

.instagram-link:hover {
  color: #059669;
  border-bottom-color: #059669;
  text-decoration: none;
}

.contest-inline-timer {
  text-align: center;
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(145deg, #ffffff, #f8fafc),
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 209, 102, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(6, 214, 160, 0.08) 0%,
      transparent 50%
    );
  border-radius: 16px;
  border: 1px solid rgba(255, 209, 102, 0.2);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.contest-inline-timer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.95) 0%,
    rgba(118, 75, 162, 0.9) 50%,
    rgba(255, 209, 102, 0.8) 100%
  );
  opacity: 0.8;
}

.contest-inline-timer::after {
  content: "⏰";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1rem;
  opacity: 0.3;
  z-index: 0;
}

.contest-inline-timer:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 209, 102, 0.4);
  background: linear-gradient(145deg, #ffffff, #f8fafc),
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 209, 102, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(6, 214, 160, 0.12) 0%,
      transparent 50%
    );
}

.contest-inline-timer p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.contest-inline-timer span {
  font-weight: 700;
  color: #7c3aed;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1;
}

.contest-standalone-action {
  text-align: center;
}

.contest-inline-button {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ffd166, #06d6a0);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.contest-inline-button:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4),
    0 4px 15px rgba(16, 185, 129, 0.2), 0 0 20px rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4),
      0 4px 15px rgba(16, 185, 129, 0.2), 0 0 20px rgba(16, 185, 129, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4),
      0 4px 15px rgba(16, 185, 129, 0.2), 0 0 30px rgba(16, 185, 129, 0.5);
  }
}

.contest-inline-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.contest-inline-button:hover::before {
  left: 100%;
}

/* Ripple effect on click */
.contest-inline-button:active::before {
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.contest-inline-button::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #10b981, #059669, #047857, #10b981);
  background-size: 400% 400%;
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: gradientShift 2s ease infinite;
}

.contest-inline-button:hover::after {
  opacity: 1;
}

/* Icon and text animations on hover */
.contest-inline-button:hover .button-icon {
  animation: iconBounce 0.6s ease-in-out;
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
}

.contest-inline-button:hover .button-text {
  animation: textGlow 0.6s ease-in-out;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

@keyframes iconBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2) rotate(5deg);
  }
}

@keyframes textGlow {
  0%,
  100% {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.contest-inline-button:active {
  transform: translateY(0);
  background: #047857;
}

.contest-inline-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  background: #9ca3af;
  box-shadow: 0 2px 8px rgba(156, 163, 175, 0.2);
}

.contest-inline-button:disabled:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(156, 163, 175, 0.2);
}

.contest-standalone-note {
  font-size: 0.75rem;
  color: #718096;
  font-style: italic;
  text-align: center;
  line-height: 1.4;
}

/* Responsive inline contest */
@media (max-width: 768px) {
  .contest-inline {
    padding: 20px;
    margin-top: 32px;
  }

  .contest-inline-title {
    font-size: 1.2rem;
  }

  .contest-inline-subtitle {
    font-size: 0.85rem;
  }

  .contest-inline-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* Responsive adjustments for countdown */
@media (max-width: 768px) {
  .professional-countdown-card {
    padding: 20px;
    border-radius: 20px;
  }

  .countdown-professional {
    gap: 8px;
  }

  .countdown-box {
    padding: 10px 6px;
  }

  .countdown-number-pro {
    font-size: 1.4rem;
  }

  .countdown-label-pro {
    font-size: 0.65rem;
    letter-spacing: 0.6px;
  }

  .launch-date-display {
    padding: 10px 16px;
    margin: 15px 0;
  }

  .launch-date-text {
    font-size: 0.85rem;
  }

  .launch-date-value {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .professional-countdown-card {
    padding: 16px;
    border-radius: 18px;
  }

  .countdown-professional {
    gap: 6px;
  }

  .countdown-box {
    padding: 8px 4px;
  }

  .countdown-number-pro {
    font-size: 1.2rem;
  }

  .countdown-label-pro {
    font-size: 0.6rem;
    letter-spacing: 0.5px;
  }

  .progress-text {
    font-size: 0.9rem;
  }

  .coming-soon-badge {
    padding: 10px 20px;
  }

  .coming-soon-badge span {
    font-size: 0.85rem;
  }

  .contest-inline {
    margin-bottom: 0;
  }
}

.countdown-box {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 12px 8px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.countdown-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd166, #f59e0b);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.countdown-box:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(255, 209, 102, 0.3);
  border-color: rgba(255, 209, 102, 0.5);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.countdown-box:hover::before {
  opacity: 1;
}

.countdown-number-pro {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a202c;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.countdown-label-pro {
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #4a5568;
  opacity: 0.8;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

@keyframes progressPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Email Form Mini */
.signup-form-mini {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.email-input-mini {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.8rem;
  outline: none;
  transition: all 0.3s ease;
}

.email-input-mini:focus {
  border-color: #06d6a0;
  box-shadow: 0 0 0 2px rgba(6, 214, 160, 0.2);
}

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes productSpin {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(15deg) scale(1.1);
  }
  50% {
    transform: rotate(-15deg) scale(1);
  }
  75% {
    transform: rotate(10deg) scale(1.1);
  }
}

@keyframes featureFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Hero Content */
.hero-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  height: 100%;
  margin-top: 2.1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  align-self: start;
  background: linear-gradient(135deg, #06d6a0, #118ab2);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(6, 214, 160, 0.3);
  width: fit-content;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: heroBadgeFloat 4s ease-in-out infinite;
}

@keyframes heroBadgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.hero-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.hero-badge:hover::before {
  left: 100%;
}

.hero-badge:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 214, 160, 0.5);
  background: linear-gradient(135deg, #05c091, #0f7a9e);
  animation: none;
}

.hero-badge:hover::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #06d6a0, #118ab2, #06d6a0);
  background-size: 200% 200%;
  border-radius: 22px;
  z-index: -1;
  opacity: 0.3;
  animation: gradientShift 2s ease infinite;
}

.hero-badge:hover .hero-badge-text {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
  transition: all 0.3s ease;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #263238;
  margin-bottom: 16px;
  line-height: 1.1;
  text-align: center;
}

.highlight {
  background: linear-gradient(135deg, #ffd166, #06d6a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.highlight:hover::after {
  width: 100%;
}

.highlight:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.2));
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: #118ab2;
  margin-bottom: 16px;
  text-align: center;
}

.hero-description {
  display: flex;
  font-size: 1rem;
  text-align: center;
  color: #263238;
  line-height: 1.6;
  max-width: 590px;
  opacity: 0.8;
}

.hero-description {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
}

.hero-description a {
  color: #009688;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.hero-description a:hover {
  color: #00796b;
  text-decoration: underline;
}

/* Key Features */
.key-features {
  display: flex;
  gap: 12px;
  margin: 2rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 768px) {
  .key-features {
    gap: 10px;
    margin-bottom: 24px;
  }

  .key-features .feature-item {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .key-features .feature-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .key-features {
    gap: 8px;
    margin-bottom: 20px;
  }

  .key-features .feature-item {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .key-features .feature-icon {
    font-size: 1.3rem;
  }
}

.key-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  padding: 10px 18px;
  border-radius: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.key-features .feature-item:nth-child(1) {
  animation-delay: 0.1s;
}
.key-features .feature-item:nth-child(2) {
  animation-delay: 0.2s;
}
.key-features .feature-item:nth-child(3) {
  animation-delay: 0.3s;
}
.key-features .feature-item:nth-child(4) {
  animation-delay: 0.4s;
}

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

.key-features .feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: left 0.6s ease;
}

.key-features .feature-item:hover::before {
  left: 100%;
}

.key-features .feature-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.98);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.key-features .feature-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.key-features .feature-item:hover .feature-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Individual feature badge styling */
.key-features .feature-item:nth-child(1) {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.1) 0%,
    rgba(16, 185, 129, 0.1) 100%
  );
  border-color: rgba(34, 197, 94, 0.3);
}

.key-features .feature-item:nth-child(1):hover {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.15) 0%,
    rgba(16, 185, 129, 0.15) 100%
  );
  border-color: rgba(34, 197, 94, 0.5);
}

.key-features .feature-item:nth-child(2) {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1) 0%,
    rgba(139, 92, 246, 0.1) 100%
  );
  border-color: rgba(99, 102, 241, 0.3);
}

.key-features .feature-item:nth-child(2):hover {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.15) 0%,
    rgba(139, 92, 246, 0.15) 100%
  );
  border-color: rgba(99, 102, 241, 0.5);
}

.key-features .feature-item:nth-child(3) {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.1) 0%,
    rgba(251, 146, 60, 0.1) 100%
  );
  border-color: rgba(245, 158, 11, 0.3);
}

.key-features .feature-item:nth-child(3):hover {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.15) 0%,
    rgba(251, 146, 60, 0.15) 100%
  );
  border-color: rgba(245, 158, 11, 0.5);
}

.key-features .feature-item:nth-child(4) {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1) 0%,
    rgba(220, 38, 38, 0.1) 100%
  );
  border-color: rgba(239, 68, 68, 0.3);
}

.key-features .feature-item:nth-child(4):hover {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.15) 0%,
    rgba(220, 38, 38, 0.15) 100%
  );
  border-color: rgba(239, 68, 68, 0.5);
}

/* Action Section */
.action-section {
  margin-top: 8px;
}

.main-action-btn {
  background: linear-gradient(135deg, #ffd166, #06d6a0);
  color: #263238;
  border: none;
  padding: 14px 28px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 209, 102, 0.4);
  position: relative;
  overflow: hidden;
}

.main-action-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.main-action-btn:hover::before {
  left: 100%;
}

.main-action-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 209, 102, 0.6);
  background: linear-gradient(135deg, #ffd166, #118ab2);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-action-btn:active {
  transform: translateY(-2px) scale(0.98);
  transition: all 0.1s ease;
}

.btn-icon {
  font-size: 1.1rem;
}

/* Key Benefits */
.key-benefits {
  display: flex;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

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

.benefit-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 20px;
}

/* Coming Soon Section */
.coming-soon {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 35px;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.coming-soon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #ea580c, #dc2626);
  border-radius: 25px 25px 0 0;
}

/* Redirect Notice */
.redirect-notice {
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  border: 2px solid #f59e0b;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  animation: redirectPulse 2s ease-in-out infinite;
}

.redirect-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  animation: bounce 1s ease-in-out infinite;
}

.redirect-text {
  color: #92400e;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.5;
}

.redirect-countdown {
  background: rgb(220, 38, 38, 0.7);
  color: white;
  padding: 2px 6px;
  margin-right: 4px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1em;
  animation: countdownPulse 1s ease-in-out infinite;
}

.redirect-cancel {
  background: #6b7280;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.redirect-cancel:hover {
  background: #4b5563;
  transform: translateY(-2px);
}

@keyframes redirectPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
  }
}

@keyframes countdownPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.coming-soon-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 10px;
  text-align: center;
}

.coming-soon-text {
  text-align: center;
  color: #6b7280;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Countdown Timer */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.countdown-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 15px 10px;
  min-width: 80px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.countdown-number {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #dc2626;
}

.countdown-label {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
}

/* Email Signup */
.email-signup {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 35px;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.email-signup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8, #1e40af);
  border-radius: 25px 25px 0 0;
}

.signup-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
  text-align: center;
}

.signup-form {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.email-input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.email-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.signup-button {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.signup-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.signup-note {
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Features */
.features {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.feature-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  min-width: 130px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 2rem;
  animation: featureFloat 4s ease-in-out infinite;
}

.feature-item:nth-child(2) .feature-icon {
  animation-delay: 0.5s;
}
.feature-item:nth-child(3) .feature-icon {
  animation-delay: 1s;
}

.feature-label {
  font-weight: 600;
  color: #1f2937;
}

/* Footer */
.footer {
  text-align: center;
  padding: 0px 0 20px;
}

.social-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #6b7280;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Social Media Brand Colors */
.social-link.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white;
}

.social-link.tiktok:hover {
  background: #000000;
  color: white;
}

.social-link.facebook:hover {
  background: #1877f2;
  color: white;
}

.social-link.email:hover {
  background: #ea4335;
  color: white;
}

.footer-text {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Success Message */
.success-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.success-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  margin: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.success-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 15px;
}

.success-content p {
  color: #6b7280;
  margin-bottom: 25px;
  line-height: 1.6;
}

.success-close {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-menu {
    gap: 12px;
  }

  .nav-link {
    display: none;
  }

  .nav-cta-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  /* Improved mobile layout */
  .hero-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Better mobile spacing */
  .container {
    padding: 0 15px;
  }

  .main-content {
    padding: 60px 15px 20px;
  }

  .action-section {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .notification-card {
    right: 10px;
    max-width: 300px;
    top: -50px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .product-section {
    order: -1;
  }

  .product-image {
    max-width: 280px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    max-width: none;
  }

  .key-features {
    justify-content: center;
    gap: 8px;
    flex-direction: column;
    align-items: center;
  }

  .key-features .feature-item {
    padding: 8px 16px;
    font-size: 0.85rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .main-action-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .info-card {
    padding: 14px;
    margin-bottom: 10px;
  }

  .card-icon {
    font-size: 1.3rem;
  }

  .card-title {
    font-size: 0.85rem;
  }

  .card-text {
    font-size: 0.75rem;
  }

  .professional-countdown-card {
    padding: 20px;
    margin-bottom: 0px;
  }

  .countdown-professional {
    gap: 8px;
  }

  .countdown-box {
    padding: 10px 6px;
  }

  .countdown-number-pro {
    font-size: 1.2rem;
  }

  .countdown-label-pro {
    font-size: 0.6rem;
  }

  .coming-soon-badge {
    padding: 6px 16px;
    margin-bottom: 16px;
  }

  .coming-soon-badge span {
    font-size: 0.8rem;
  }

  .countdown-item {
    min-width: 60px;
    padding: 10px 5px;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .signup-form {
    flex-direction: column;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    width: 100%;
    max-width: 200px;
  }

  .redirect-notice {
    padding: 15px;
    margin: 15px 0;
  }

  .redirect-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .nav-container {
    padding: 0 10px;
  }

  /* Extra small mobile optimizations */
  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .product-image {
    max-width: 240px;
  }

  .key-features .feature-item {
    padding: 6px 12px;
    font-size: 0.8rem;
    max-width: 250px;
  }

  .main-action-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .nav-logo-text {
    font-size: 1.2rem;
  }

  .action-section {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .nav-logo-image {
    height: 30px;
  }

  .notification-card {
    right: 10px;
    left: 0px;
    max-width: none;
    top: -50px;
    width: 305px;
  }

  .hero-section {
    gap: 25px;
    padding: 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .product-image {
    max-width: 240px;
  }

  .professional-countdown-card {
    padding: 16px;
  }

  .countdown-professional {
    gap: 6px;
  }

  .countdown-box {
    padding: 8px 4px;
  }

  .countdown-number-pro {
    font-size: 1rem;
  }

  .countdown-label-pro {
    font-size: 0.55rem;
  }

  .coming-soon-badge {
    padding: 5px 12px;
    margin-bottom: 14px;
  }

  .coming-soon-badge span {
    font-size: 0.75rem;
  }

  .progress-text {
    font-size: 0.75rem;
  }

  .key-features {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .key-features .feature-item {
    padding: 6px 12px;
    font-size: 0.75rem;
    width: 100%;
    max-width: 180px;
    justify-content: center;
  }

  .main-action-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }

  .info-card {
    padding: 12px;
    margin-bottom: 8px;
  }

  .card-icon {
    font-size: 1.2rem;
  }

  .card-title {
    font-size: 0.8rem;
  }

  .card-text {
    font-size: 0.7rem;
  }

  .card-button {
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  .countdown-mini .countdown-item {
    min-width: 28px;
    padding: 3px 4px;
  }

  .countdown-mini .countdown-number {
    font-size: 0.8rem;
  }

  .email-input-mini {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .redirect-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .redirect-cancel {
    padding: 6px 16px;
    font-size: 0.8rem;
  }

  .social-links {
    gap: 15px;
  }

  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

/* Email Signup Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 20px;
  padding: 0;
  max-width: 450px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8) translateY(20px);
  transition: all 0.3s ease;
}

.modal-overlay.show .modal-content {
  transform: scale(1) translateY(0);
}

.modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.modal-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
  padding: 30px;
}

.modal-footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body p {
  color: #8f8c8c;
  font-size: 1.05rem;
  text-align: justify;
  line-height: 1.4;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-email-input {
  padding: 15px 20px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.modal-email-input:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.modal-submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Update navbar CTA button for email signup */
.nav-cta-btn.email-signup-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.nav-cta-btn.email-signup-btn:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 1) 0%,
    rgba(118, 75, 162, 1) 50%,
    rgba(255, 209, 102, 1) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
}

.loading-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

/* Animated Logo Container */
.loading-logo-container {
  position: relative;
  margin-bottom: 3rem;
}

.loading-logo {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.85)
  );
  padding: 2rem 3rem;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: logoFloat 3s ease-in-out infinite;
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #475569);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}

.logo-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 1px;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.3), transparent);
  border-radius: 50%;
  animation: logoGlow 4s ease-in-out infinite;
  z-index: -1;
}

/* Fun Loading Messages */
.loading-messages {
  margin-bottom: 2.5rem;
  height: 60px;
  position: relative;
}

.loading-message {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.loading-message.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.loading-message:not(.active) {
  transform: translateX(-50%) translateY(20px);
}

.message-icon {
  font-size: 1.5rem;
  animation: messageIconBounce 2s ease-in-out infinite;
}

.message-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Enhanced Spinner */
.loading-spinner-container {
  position: relative;
  margin-bottom: 2rem;
}

.loading-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.spinner-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-radius: 50%;
  animation: spinnerRotate 2s linear infinite;
}

.spinner-ring:nth-child(1) {
  border-top-color: #ffd166;
  animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
  border-right-color: #10b981;
  animation-delay: 0.3s;
}

.spinner-ring:nth-child(3) {
  border-bottom-color: #3b82f6;
  animation-delay: 0.6s;
}

.spinner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.2), transparent);
  border-radius: 50%;
  animation: spinnerGlow 2s ease-in-out infinite;
}

/* Progress Indicator */
.loading-progress {
  margin-bottom: 2rem;
}

.progress-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  animation: progressDotPulse 2s ease-in-out infinite;
}

.progress-dot.active {
  background: #ffd166;
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(255, 209, 102, 0.6);
}

.progress-dot:nth-child(1) {
  animation-delay: 0s;
}
.progress-dot:nth-child(2) {
  animation-delay: 0.2s;
}
.progress-dot:nth-child(3) {
  animation-delay: 0.4s;
}
.progress-dot:nth-child(4) {
  animation-delay: 0.6s;
}
.progress-dot:nth-child(5) {
  animation-delay: 0.8s;
}

/* Fun Fact */
.loading-fun-fact {
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
  animation: funFactFloat 4s ease-in-out infinite;
}

.fun-fact-icon {
  font-size: 1.5rem;
  animation: funFactIconSpin 3s linear infinite;
}

.fun-fact-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Floating Elements */
.loading-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-frisbee,
.floating-leaf,
.floating-star,
.floating-heart {
  position: absolute;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
}

.floating-frisbee {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.floating-leaf {
  top: 30%;
  right: 20%;
  animation-delay: 2s;
}

.floating-star {
  bottom: 25%;
  left: 25%;
  animation-delay: 4s;
}

.floating-heart {
  bottom: 35%;
  right: 15%;
  animation-delay: 1s;
}

/* Animations */
@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes logoGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes messageIconBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes spinnerRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spinnerGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes progressDotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes funFactFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes funFactIconSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .loading-logo {
    padding: 1.5rem 2rem;
    border-radius: 20px;
  }

  .logo-text {
    font-size: 2.8rem;
  }

  .logo-subtitle {
    font-size: 1rem;
  }

  .loading-messages {
    height: 50px;
    margin-bottom: 2rem;
  }

  .loading-message {
    padding: 10px 20px;
  }

  .message-text {
    font-size: 1rem;
  }

  .loading-spinner {
    width: 60px;
    height: 60px;
  }

  .spinner-ring {
    border-width: 2px;
  }

  .loading-fun-fact {
    padding: 12px 20px;
    max-width: 350px;
  }

  .fun-fact-text {
    font-size: 0.9rem;
  }

  .floating-frisbee,
  .floating-leaf,
  .floating-star,
  .floating-heart {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .loading-logo {
    padding: 1rem 1.5rem;
    border-radius: 18px;
  }

  .logo-text {
    font-size: 2.2rem;
  }

  .logo-subtitle {
    font-size: 0.9rem;
  }

  .loading-messages {
    height: 45px;
    margin-bottom: 1.5rem;
  }

  .loading-message {
    padding: 8px 16px;
  }

  .message-text {
    font-size: 0.9rem;
  }

  .loading-spinner {
    width: 50px;
    height: 50px;
  }

  .loading-fun-fact {
    padding: 10px 16px;
    max-width: 300px;
  }

  .fun-fact-text {
    font-size: 0.85rem;
  }

  .floating-frisbee,
  .floating-leaf,
  .floating-star,
  .floating-heart {
    font-size: 1.2rem;
  }
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 0;
  margin: 2rem 0;
}

.newsletter-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.newsletter-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}

.newsletter-description {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

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

.newsletter-input {
  padding: 1rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.newsletter-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.newsletter-submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.newsletter-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.newsletter-submit-btn .btn-icon {
  font-size: 1.2rem;
}

/* Enhanced Footer */
.footer {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 3rem 0 1rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Full-width background for footer */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  z-index: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f1f5f9;
  font-family: "Poppins", sans-serif;
  text-align: left;
}

.footer-description {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;
  max-width: 325px;
}

.footer-contacts p {
  color: #cbd5e1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-start;
}

.footer-contacts a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contacts a:hover {
  color: #667eea;
}

.footer-bottom {
  padding-top: 1rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px 0;
  position: relative;
  width: 100%;
  z-index: 1;
}

/* Footer separator line */
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  height: 1px;
  background: #475569;
}

.footer-text {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Contact Link Styles */
.contact-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #5a67d8;
  text-decoration: underline;
}

/* Hero Highlights - Professional Events Section */
.hero-highlights {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%),
    radial-gradient(
      circle at 20% 80%,
      rgba(16, 185, 129, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(16, 185, 129, 0.03) 0%,
      transparent 50%
    );
  border-left: 4px solid #10b981;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  animation: subtleFloat 6s ease-in-out infinite;
}

.hero-highlights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #10b981, #059669, #10b981);
  opacity: 0.8;
}

.hero-highlights::after {
  content: "🎯";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  opacity: 0.1;
  z-index: 0;
}

@keyframes subtleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.hero-highlights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #10b981, #059669, #10b981);
  opacity: 0.8;
}

.hero-highlights::after {
  content: "🎯";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  opacity: 0.1;
  z-index: 0;
}

.hero-highlights:hover {
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
  border-color: #10b981;
  transform: translateY(-1px);
}

.highlight-text {
  color: #374151;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.highlight-text strong {
  color: #10b981;
  font-weight: 600;
  position: relative;
}

.highlight-text strong::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #10b981;
  transition: width 0.3s ease;
}

.highlight-text:hover strong::after {
  width: 100%;
}

.highlight-text emoji {
  opacity: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Professional Feature Notice */
.feature-notice {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;

  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

.feature-notice:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e0;
}

.feature-notice-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: #6b7280;
  opacity: 0.8;
}

.feature-notice-content {
  flex: 1;
}

.feature-notice-title {
  color: #374151;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.025em;
}

.feature-notice-text {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
}

/* Responsive Design for Newsletter */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-title {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-section {
    align-items: flex-start;
  }
}

/* Enhanced Modal Styles */
.enhanced-modal {
  width: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  margin: 0 auto;
  position: relative;
}

.modal-overlay.show .modal-content {
  transform: scale(1) translateY(0);
}

.modal-overlay.show {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 9999 !important;
}

.modal-overlay.show .modal-content {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: scale(1) !important;
}

.enhanced-modal .modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 1.5rem 1.5rem 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.modal-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}

.logo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.modal-logo img {
  width: 70px;
  height: auto;
  padding: 0.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.modal-subtitle {
  font-size: 0.92rem;
  opacity: 0.9;
  line-height: 1.4;
  margin: 0;
  text-align: center;
  max-width: 100%;
}

.enhanced-modal .modal-body {
  padding: 1.5rem;
}

.enhanced-form .form-group {
  margin-bottom: 1rem;
  display: block !important;
  visibility: visible !important;
}

.enhanced-form label {
  display: block;
  margin-bottom: 0.375rem;
  font-weight: 600;
  color: #374151;
  font-size: 0.85rem;
  visibility: visible !important;
}

.modal-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background: white;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #374151 !important;
}

.modal-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-1px);
}

.enhanced-submit {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.enhanced-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.enhanced-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.enhanced-submit .btn-icon {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.enhanced-submit:hover .btn-icon {
  transform: translateX(2px);
}

.modal-footer {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.modal-footer-text {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.3;
  margin: 0;
}

/* Action Section Layout */
.action-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Responsive Design for Enhanced Modal */
@media (max-width: 768px) {
  .enhanced-modal {
    width: 95%;
    max-width: 420px;
    margin: 0;
  }

  .enhanced-modal .modal-header {
    padding: 1.25rem 1.25rem 0.75rem;
  }

  .enhanced-modal .modal-body {
    padding: 1.25rem;
  }

  .modal-title {
    font-size: 1.4rem;
  }

  .modal-subtitle {
    font-size: 0.85rem;
  }

  .modal-logo img {
    width: 60px;
  }

  .action-section {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .enhanced-modal {
    width: 98%;
    max-width: 420px;
    margin: 0;
  }

  .enhanced-modal .modal-header {
    padding: 1rem 1rem 0.75rem;
  }

  .enhanced-modal .modal-body {
    padding: 1rem;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  .modal-subtitle {
    font-size: 0.8rem;
  }

  .modal-logo img {
    width: 50px;
  }
}

/* Remove old newsletter section styles since we're not using them anymore */
.newsletter-section,
.newsletter-container,
.newsletter-content,
.newsletter-title,
.newsletter-description,
.newsletter-form,
.newsletter-input,
.newsletter-submit-btn {
  display: none;
}

/* Restore essential modal styles */
.modal-overlay {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1rem;
  box-sizing: border-box;
  overflow: hidden;
}

.modal-overlay.show {
  display: flex !important;
  opacity: 1 !important;
}

.modal-content {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
  transform: scale(1) !important;
}

/* Ensure perfect centering */
.modal-overlay.show {
  display: flex !important;
  opacity: 1 !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Debug: Ensure modal is centered */
.modal-overlay.show .enhanced-modal {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: scale(1) !important;
}

/* Ensure logo and title are in the same row */
.modal-logo .logo-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1rem !important;
  width: 100% !important;
}

.modal-logo .logo-container img {
  flex-shrink: 0;
}

.modal-logo .logo-container .modal-title {
  margin: 0 !important;
  white-space: nowrap;
}

/* Force modal centering */
.modal-overlay.show {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.modal-overlay.show .enhanced-modal {
  margin: 0 auto !important;
  position: relative !important;
  transform: none !important;
}

/* Form alignment improvements */
.enhanced-form {
  width: 100%;
}

.enhanced-form .form-group {
  margin-bottom: 1rem;
  display: block !important;
  visibility: visible !important;
  width: 100%;
}

/* Ensure inputs are properly sized */
.modal-input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.875rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background: white;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #374151 !important;
}

/* Modal content centering */
.modal-content.enhanced-modal {
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  margin: 0 auto;
}

.modal-overlay.show .modal-content.enhanced-modal {
  transform: scale(1) !important;
}

/* Success Message Enhancement */
.success-message {
  background: rgba(34, 197, 94, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.success-content {
  text-align: center;
  color: white;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.success-close {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* Newsletter Success Notification */
.newsletter-success-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  z-index: 10000;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  max-width: 350px;
}

.newsletter-success-notification.show {
  transform: translateX(0);
}

.newsletter-success-notification .notification-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.newsletter-success-notification .notification-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.newsletter-success-notification .notification-text {
  display: flex;
  flex-direction: column;
}

.newsletter-success-notification .notification-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.newsletter-success-notification .notification-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Mobile Responsiveness for Notification */
@media (max-width: 768px) {
  .newsletter-success-notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100px);
  }

  .newsletter-success-notification.show {
    transform: translateY(0);
  }
}

/* Professional Contact Callout Styles */
.contact-callout {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.contact-callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #e2e8f0;
}

.contact-callout:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e0;
}

.contact-callout-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-callout-icon {
  font-size: 1.5rem;
  color: #6b7280;
  opacity: 0.8;
}

.contact-callout-title {
  color: #374151;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.025em;
}

.contact-callout-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}

.contact-method:hover {
  background: #f8fafc;
  border-color: #e2e8f0;
  transform: translateX(2px);
}

.contact-method-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  color: #6b7280;
  opacity: 0.8;
}

.contact-method-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-method-label {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-link-primary {
  color: #667eea;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.contact-link-primary:hover {
  color: #5a67d8;
  transform: scale(1.02);
}

.contact-link-primary::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #8b5cf6);
  transition: width 0.3s ease;
}

.contact-link-primary:hover::after {
  width: 100%;
}

/* Responsive design for contact callout */
@media (max-width: 768px) {
  .contact-callout {
    padding: 1.25rem;
    margin: 1.5rem 0;
  }

  .contact-callout-title {
    font-size: 1.2rem;
  }

  .contact-method {
    padding: 0.875rem;
  }

  .contact-link-primary {
    font-size: 1rem;
  }
}
