/* General Styles */
:root {
  --primary-color: #4caf50;
  --primary-dark: #45a049;
  --secondary-color: #e8f5e9;
  --text-color: #2c3e50;
  --heading-color: #1a237e;
  --gradient: linear-gradient(135deg, #4caf50, #1a237e);
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.column1, .column2 {
  flex: 1;
}

.column1 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5% 8%;
  overflow-y: auto;
}

.column2 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 45%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.column2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(76, 175, 80, 0.92), 
    rgba(26, 35, 126, 0.88));
  z-index: 1;
}

.right-side-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 40px;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 32px;
}

.hero-image:hover {
  transform: translateY(-10px);
}

/* Launching Soon Styles */
.launching-soon {
  display: inline-block;
  background: var(--gradient);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  animation: fadeIn 0.5s ease-out;
}

.launching-soon span {
  font-size: 15px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Heading Styles */
h1 {
  font-size: 48px;
  color: var(--heading-color);
  margin: 0 0 24px 0;
  line-height: 1.2;
  font-weight: 900;
  animation: slideUp 0.5s ease-out;
}

h2 {
  font-size: 24px;
  color: var(--primary-color);
  margin: 0 0 16px 0;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.feature-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  color: var(--heading-color);
  margin: 0 0 12px 0;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  color: var(--text-color);
  font-size: 14px;
}

/* Waitlist Form Styles */
.waitlist-container {

  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.waitlist-form-preview {
  width: 100%;
}

.waitlist-form-preview input[type="email"] {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: var(--secondary-color);
  margin-bottom: 20px;
}

.waitlist-form-preview input[type="email"]:focus {
  outline: none;
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

.waitlist-form-preview button {
  width: 100%;
  padding: 16px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.waitlist-form-preview button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(76, 175, 80, 0.2);
}

.form-note {
  margin-top: 16px;
  text-align: center;
  color: var(--text-color);
  font-size: 14px;
}

/* Special Offer Banner */
.special-offer {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  padding: 24px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.2);
  animation: pulse 2s infinite;
  text-align: center;
}

.special-offer h3 {
  color: white !important;
  font-size: 20px;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.special-offer p {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
}

.special-offer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shine 3s infinite;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Medium Devices */
@media (max-width: 991px) {
  .container {
    height: auto;
    overflow: auto;
    flex-direction: column-reverse;
  }

  .column1 {
    padding: 40px 5%;
  }

  .column2 {
    width: 100%;
    min-height: 600px;
  }

  .right-side-content {
    padding: 0 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 36px;
  }
}

/* Small Devices */
@media (max-width: 767px) {
  .column1 {
    padding: 32px 24px;
  }

  h1 {
    font-size: 32px;
  }

  .feature-card {
    padding: 20px;
  }

  .waitlist-form-preview {
    padding: 24px;
  }
}