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

/* Added custom font Ws Paradose Italic for hero title */
@font-face {
  font-family: "Ws Paradose Italic";
  src: url("Ws Paradose Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

body {
  font-family: "Roboto Mono", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
  background-color: #003d31;
  color: #fff;
  line-height: 1.6;
  max-height: 100vh;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Header */
.header {
  margin-bottom: 3rem;
  animation: fadeIn 0.8s ease-in;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #53ff8a;
  animation: fadeIn 1s ease-in 0.2s both;
  padding-top: 2rem;
}

/* Content Layout */
.content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Hero Section */
.hero {
  animation: fadeIn 1s ease-in 0.3s both;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 400;
  /* Applied custom italic font to hero title */
  font-family: "Ws Paradose Italic", Georgia, serif;
  font-style: italic;
}

.hero-title-green {
  display: block;
  color: #53ff8a;
  font-style: italic;
  animation: fadeIn 1.2s ease-in 0.4s both;
}

.hero-title-yellow {
  display: block;
  color: #e6ff2b;
  font-style: italic;
  animation: fadeIn 1.2s ease-in 0.6s both;
}

.hero-subtitle {
  font-size: 1rem;
  color: #53ff8a;
  margin-bottom: 2rem;
  line-height: 1.5;
  animation: fadeIn 1.2s ease-in 0.8s both;
  font-family: "Roboto Mono", Courier, monospace;
}

/* Globe Icon */
.globe-icon {
  width: 280px;
  max-width: 100%;
  margin: 2rem 0;
  animation: fadeIn 1.4s ease-in 1s both;
}

.globe-icon svg {
  width: 100%;
  height: auto;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  animation: fadeIn 1.4s ease-in 1.2s both;
  /* justify-content: center; */
  align-items: center;
}

.social-link {
  width: 48px;
  height: 48px;
  color: #53ff8a;
  transition: transform 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  transform: scale(1.15);
  color: #e6ff2b;
}

.social-link svg {
  width: 100%;
  height: 100%;
}

.social-link-email {
  color: #53ff8a;
}

/* Contact Form */
.contact-form-wrapper {
  animation: fadeIn 1.2s ease-in 0.8s both;
}

.contact-form {
  background: #f5f5f5;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0;
  font-size: 1rem;
  border: none;
  border-bottom: 2px solid #000;
  background: transparent;
  color: #000;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: #003d31;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #000;
  font-weight: 500;
}

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

/* Added captcha styling */
.captcha-group {
  margin-bottom: 1.5rem;
}

.captcha-label {
  display: block;
  color: #000;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* Added checkbox styling */
.checkbox-group {
  margin-bottom: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  color: #000;
  font-size: 0.9rem;
  line-height: 1.5;
  flex-shrink: 1;
}

.checkbox-input {
  width: 20px !important;
  height: 20px;
  flex-shrink: 5;
  cursor: pointer;
  accent-color: #0d4944;
  margin-top: 0.1rem;
  margin-left: 2px;
}

.checkbox-text {
  flex: 1;
}

.terms-link {
  color: #0d4944;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: #7ef542;
}

.terms-link:focus {
  outline: 2px solid #0d4944;
  outline-offset: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  font-family: inherit;
}

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

.btn:active {
  transform: scale(0.98);
}

.btn-submit {
  width: 100%;
  max-width: 300px;
  margin: 1rem auto 0;
  background: #000;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-submit:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-download {
  background: #e6ff2b;
  color: #000;
  box-shadow: 0 4px 12px rgba(244, 255, 0, 0.3);
}

.btn-download:hover {
  box-shadow: 0 6px 20px rgba(244, 255, 0, 0.5);
}

.download-icon {
  width: 20px;
  height: 20px;
}

/* CTA Wrapper */
.cta-wrapper {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
  animation: fadeIn 1.4s ease-in 1.4s both;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 0 1rem;
  color: #7ef542;
  font-size: 0.9rem;
  animation: fadeIn 1.6s ease-in 1.6s both;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Desktop Styles */
@media (min-width: 768px) {
  .container {
    padding: 3rem 4rem;
  }

  .logo svg {
    width: 170px;
  }

  .content {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  .hero {
    flex: 1;
    max-width: 600px;
  }

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

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

  .contact-form-wrapper {
    flex: 0 0 450px;
    position: sticky;
    top: 2rem;
  }

  .contact-form {
    padding: 3rem 2.5rem;
  }

  .cta-wrapper {
    margin: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }

  .contact-form-wrapper {
    flex: 0 0 500px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 4rem 5rem;
  }

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

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  body {
    background: white;
    color: black;
  }

  .social-links,
  .btn {
    display: none;
  }
}
