/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #90CAF9;
  --primary-color-hover: #64B5F6;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #000000;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

html {
  width: 100%;
  margin: 0;
  padding: 0;
}

main {
  background-color: #000000;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Sticky Header */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #000000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-left: 30px;
}

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

.header-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.header-logo a:hover {
  opacity: 0.8;
}

.header-logo img {
  height: 50px;
  width: auto;
  max-width: 300px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.header-app-stores {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}

.app-store-link {
  display: inline-block;
  line-height: 0;
  transition: opacity 0.2s ease;
}

.app-store-link:hover {
  opacity: 0.8;
}

.app-store-link img {
  height: 50px;
  width: auto;
  display: block;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: 1rem;
  transition: color 0.2s ease;
}

.mobile-menu-toggle:hover {
  color: var(--primary-color);
}

.mobile-menu-toggle:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Responsive design - Mobile First Approach */
/* Tablet and below (max-width: 1024px) */
@media (max-width: 1024px) {
  .header-container {
    flex-wrap: wrap;
  }

  .header-app-stores {
    order: 3;
    width: 100%;
    justify-content: center;
    padding: 1rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
  }
}

/* Sticky Bottom Bar for Mobile */
.sticky-bottom-bar {
  display: none;
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .sticky-header {
    padding: 0.75rem 0;
  }

  .header-container {
    flex-wrap: nowrap;
    padding: 0 1rem;
  }

  .header-left {
    padding-left: 0;
    gap: 0.5rem;
    flex: 1;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000000;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-nav.active {
    display: flex;
  }

  .header-nav .nav-link {
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: left;
  }

  .header-nav .nav-link:last-child {
    border-bottom: none;
  }

  /* Hide app store buttons from header on mobile */
  .header-app-stores {
    display: none;
  }

  .header-logo img {
    height: 40px;
    max-width: 200px;
  }

  /* Show sticky bottom bar on mobile */
  .sticky-bottom-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    padding: 1rem 0;
  }

  .bottom-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
  }

  .sticky-bottom-bar .app-store-link img {
    height: 40px;
    width: auto;
  }

  /* Add padding to main content to account for sticky bottom bar */
  main {
    padding-bottom: 80px;
  }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
  .header-container {
    padding: 0 0.75rem;
  }

  .header-logo img {
    height: 35px;
    max-width: 150px;
  }

  .mobile-menu-toggle {
    font-size: 1.25rem;
    padding: 0.25rem;
  }

  .sticky-bottom-bar {
    padding: 0.75rem 0;
  }

  .bottom-bar-container {
    gap: 0.75rem;
    padding: 0 0.75rem;
  }

  .sticky-bottom-bar .app-store-link img {
    height: 35px;
  }

  /* Adjust main padding for smaller bottom bar */
  main {
    padding-bottom: 70px;
  }
}

/* Hero Section */
#hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  margin: 0;
  box-sizing: border-box;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 100%;
  box-sizing: border-box;
}

.hero-content {
  flex: 1;
  color: #fff;
  text-align: left;
}

.hero-content .tagline {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

.hero-content p:not(.tagline) {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-phone {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

.primary-btn {
  background-color: var(--primary-color);
  color: #fff;
}

.primary-btn:hover {
  background-color: var(--primary-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.secondary-btn {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #hero {
    min-height: 400px;
    padding-top: 70px;
  }

  .hero-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 1.5rem;
  }

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

  .hero-content .tagline {
    font-size: 2rem;
  }

  .hero-content p:not(.tagline) {
    font-size: 1rem;
  }

  .hero-phone img {
    max-height: 400px;
  }

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

  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  #hero {
    min-height: 350px;
    padding-top: 60px;
  }

  .hero-container {
    padding: 1rem;
  }

  .hero-content .tagline {
    font-size: 1.75rem;
  }

  .hero-content p:not(.tagline) {
    font-size: 0.95rem;
  }

  .hero-phone img {
    max-height: 300px;
  }
}

/* Explainer / How it Works Section */
#explainer {
  padding: 4rem 2rem;
  background-color: #000000;
}

.explainer-title {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
}

.steps {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.step {
  flex: 0 1 auto;
  min-width: 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.step-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.step h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
}

@media (max-width: 768px) {
  #explainer {
    padding: 3rem 1.5rem;
  }

  .explainer-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .steps {
    flex-direction: column;
    gap: 2rem;
  }

  .step {
    max-width: 100%;
  }
}

/* What Is Silent Stream Section */
#what-is {
  padding: 4rem 2rem;
  background-color: #000000;
  background-image: url('/assets/what-is-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

#what-is::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#what-is > * {
  position: relative;
  z-index: 2;
}

.what-is-title {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
}

.what-is-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.what-is-column {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.what-is-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.what-is-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.what-is-column h3 {
  font-size: 1.75rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1.5rem;
}

.what-is-column p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 1rem;
}

.what-is-column p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  #what-is {
    padding: 3rem 1.5rem;
  }

  .what-is-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .what-is-content {
    flex-direction: column;
    gap: 2rem;
  }

  .what-is-column {
    padding: 1.5rem;
  }
}

/* Why Venues Choose Silent Stream Section */
#why-choose {
  padding: 4rem 2rem;
  background-color: #000000;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.why-choose-title {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
}

.why-choose-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-choose-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.why-choose-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.why-choose-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.why-choose-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
}

.why-choose-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
}

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

@media (max-width: 768px) {
  #why-choose {
    padding: 3rem 1.5rem;
  }

  .why-choose-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-choose-card {
    padding: 1.5rem;
  }
}

/* How It Works Section */
#how-it-works {
  padding: 4rem 2rem;
  background-color: #000000;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.how-it-works-title {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
}

.how-it-works-content {
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works-diagram {
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-it-works-diagram img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  padding-left: 40px;
}

.how-it-works-steps::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), var(--primary-color));
  box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
  border-radius: 2px;
}

.how-it-works-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  left: -40px;
  box-shadow: 0 0 15px var(--primary-color), 0 0 25px var(--primary-color);
  z-index: 2;
}

.step-content {
  flex: 1;
  margin-left: 70px;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
}

.step-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 0.75rem;
}

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

@media (max-width: 768px) {
  #how-it-works {
    padding: 3rem 1.5rem;
  }

  .how-it-works-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .how-it-works-diagram {
    margin-bottom: 3rem;
  }

  .how-it-works-steps {
    gap: 2rem;
    padding-left: 30px;
  }

  .how-it-works-steps::before {
    left: 15px;
    width: 2px;
  }

  .how-it-works-step {
    gap: 1.5rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    left: -30px;
  }

  .step-content {
    margin-left: 50px;
  }

  .step-content h3 {
    font-size: 1.25rem;
  }

  .step-content p {
    font-size: 0.95rem;
  }
}

/* Get Started Section */
#get-started {
  padding: 4rem 2rem;
  background-color: transparent;
  background-image: url('/assets/get-started-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

#get-started::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  z-index: 1;
}

#get-started > * {
  position: relative;
  z-index: 2;
}

.get-started-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.get-started-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
}

.get-started-subtitle {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.get-started-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.get-started-btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 600;
}

.get-started-btn.primary {
  background-color: var(--primary-color);
  color: #fff;
}

.get-started-btn.primary:hover {
  background-color: var(--primary-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.get-started-btn.secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.get-started-btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.get-started-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  #get-started {
    padding: 3rem 1.5rem;
  }

  .get-started-title {
    font-size: 2rem;
  }

  .get-started-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

  .get-started-buttons {
    flex-direction: column;
    align-items: center;
  }

  .get-started-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* Footer */
footer {
  background-color: transparent;
  color: #fff;
  padding: 1rem 1rem 1rem 1rem;
  text-align: center;
  margin-top: 3rem;
}

footer p {
  margin: 0.5rem 0;
  color: #fff;
}

footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.footer-links {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-separator {
  margin: 0 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .footer-separator {
    display: none;
  }
}

/* Locations Page */
#locations-map {
  padding: 4rem 2rem;
  background-color: #000000;
  min-height: calc(100vh - 200px);
}

.locations-title {
  color: #fff;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

#map {
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 768px) {
  #locations-map {
    padding: 2rem 1rem;
  }

  .locations-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  #map {
    height: 500px !important;
  }
}

/* Locations List Section */
#locations-list {
  padding: 4rem 2rem;
  background-color: #000000;
}

#locations-container {
  max-width: 1200px;
  margin: 0 auto;
}

.state-section {
  margin-bottom: 3rem;
}

.state-name {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.location-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(144, 202, 249, 0.2);
}

.location-name {
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.location-address,
.location-city {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0.25rem 0;
  line-height: 1.4;
}

.location-phone,
.location-email,
.location-website {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.location-email a,
.location-website a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.location-email a:hover,
.location-website a:hover {
  color: var(--primary-color-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  #locations-list {
    padding: 2rem 1rem;
  }

  .state-name {
    font-size: 1.5rem;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .location-card {
    padding: 1.25rem;
  }
}

/* Signup Page */
#signup {
  padding: 4rem 2rem;
  background-color: #000000;
  min-height: calc(100vh - 200px);
}

.signup-container {
  max-width: 800px;
  margin: 0 auto;
}

.signup-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

.signup-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
}

.partner-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(144, 202, 249, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #f44336;
  background: rgba(244, 67, 54, 0.1);
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
  border-color: #f44336;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

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

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  background-color: var(--primary-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}

.form-message.success {
  background-color: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: #4caf50;
}

.form-message.error {
  background-color: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.5);
  color: #f44336;
}

@media (max-width: 768px) {
  #signup {
    padding: 3rem 1.5rem;
  }

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

  .signup-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .partner-form {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
}

/* Success Page */
#success {
  padding: 4rem 2rem;
  background-color: #000000;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.success-message {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.success-submessage {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.success-actions .primary-btn,
.success-actions .secondary-btn {
  padding: 0.875rem 2rem;
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 768px) {
  #success {
    padding: 3rem 1.5rem;
  }

  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

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

  .success-message {
    font-size: 1.1rem;
  }

  .success-submessage {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .success-actions {
    flex-direction: column;
  }

  .success-actions .primary-btn,
  .success-actions .secondary-btn {
    width: 100%;
  }
}

