/* ===========================================
   LABEBO LANDING PAGE - Simple & Beautiful
   =========================================== */

:root {
  --green-primary: #88C540;
  --green-secondary: #6B9F3C;
  --green-dark: #236324;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.2);
}

* {
  margin: 5;
  padding: 5;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Cairo', sans-serif;
  background: linear-gradient(135deg, #236324 0%, #88C540 100%);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow-x: hidden;
}

/* Animated Background Circles */
body::before,
body::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

body::before {
  width: 300px;
  height: 300px;
  background: white;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

body::after {
  width: 200px;
  height: 200px;
  background: white;
  bottom: -50px;
  left: -50px;
  animation-delay: 5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-50px) scale(1.1);
  }
}

.container {
  max-width: 500px;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

/* Logo */
.logo-container {
  text-align: center;
  margin-bottom: 15px;
  animation: fadeInDown 0.8s ease;
}

.logo {
  height: 110px;
  width: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Content */
.content {
  animation: fadeInUp 0.8s ease;
  width: 100%;
  max-width: 100%;
  
  
}

.title {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.subtitle {
  color: rgba(255,255,255,0.95);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.6;
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Form Card */
.form-card {
  background: var(--white);
  border-radius: 30px;
  padding: 30px 25px;
  box-shadow: var(--shadow-lg);
  animation: scaleIn 0.8s ease;
  animation-delay: 0.2s;
  animation-fill-mode: backwards;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.form-title {
  color: var(--green-dark);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 100%;
}

/* Honeypot - Hidden field for bot protection */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 100%;
}

.form-group label {
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 600;
  padding-right: 5px;
}

.form-group input {
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  font-family: 'Cairo', sans-serif;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

/* Make phone input wider for international numbers */
.form-group input[type="tel"] {
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  width: 100%;
}

.form-group input:focus {
  outline: none;
  border-color: var(--green-primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(136, 197, 64, 0.15);
}

.form-group input::placeholder {
  color: #999;
}

/* Submit Button */
.submit-btn {
  margin-top: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  color: var(--white);
  border: none;
  border-radius: 15px;
  font-family: 'Cairo', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(136, 197, 64, 0.3);
  width: 100%;
  max-width: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(136, 197, 64, 0.4);
}

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

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

/* Success Message */
.success-message {
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
  color: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  animation: slideInUp 0.5s ease;
}

.success-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  stroke-width: 3;
}

.success-message p {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}

/* Footer */
.footer {
  margin-top: 20px;
  text-align: center;
  animation: fadeIn 1s ease;
  animation-delay: 0.5s;
  animation-fill-mode: backwards;
}

.footer p {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

@media (max-width: 768px) {
  body {
    padding: 10px 10px;
    align-items: flex-start;
    padding-top: 15px;
    min-height: auto;
  }
  
  .container {
    max-width: 100%;
    width: 100%;
  }

  .title {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }

  .subtitle {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .form-card {
    padding: 22px 16px;
  }

  .form-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }

  .logo {
    height: 175px;
  }
  
  .logo-container {
    margin-bottom: 18px;
  }
  
  .footer {
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 8px 8px;
    padding-top: 12px;
    align-items: flex-start;
    min-height: auto;
  }
  
  .container {
    max-width: 100%;
    width: 100%;
  }

  .title {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }

  .subtitle {
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .form-card {
    padding: 18px 12px;
    border-radius: 18px;
  }

  .form-title {
    font-size: 1.15rem;
    margin-bottom: 15px;
  }
  
  .form {
    gap: 14px;
  }
  
  .form-group {
    gap: 6px;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input {
    padding: 11px 12px;
    font-size: 0.95rem;
  }
  
  .form-group input[type="tel"] {
    font-size: 0.95rem;
  }

  .submit-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
    margin-top: 5px;
  }

  .logo {
    height: 165px;
  }
  
  .logo-container {
    margin-bottom: 16px;
  }
  
  .footer {
    margin-top: 10px;
  }
  
  .footer p {
    font-size: 0.75rem;
  }
}

/* Extra small screens */
@media (max-width: 380px) {
  body {
    padding: 6px 6px;
    padding-top: 10px;
    align-items: flex-start;
    min-height: auto;
  }
  
  .container {
    max-width: 100%;
    width: 100%;
  }
  
  .logo {
    height: 160px;
  }
  
  .logo-container {
    margin-bottom: 15px;
  }
  
  .title {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  
  .subtitle {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }
  
  .form-card {
    padding: 16px 10px;
  }
  
  .form-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .form {
    gap: 12px;
  }
  
  .form-group input {
    padding: 10px 10px;
    font-size: 0.9rem;
  }
  
  .submit-btn {
    padding: 11px 18px;
    font-size: 0.9rem;
  }
  
  .footer {
    margin-top: 8px;
  }
}
