@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --darkgreen: #344e41;
  --green: #3a5a40;
  --lightgreen: #588157;
  --white: whitesmoke;
  --black: #000;
  --pastelgreen: #a3b18a;
  --black-opacity: rgba(0, 0, 0, 0.8);
  --green-opacity: rgba(58, 90, 64, 0.8);
  --gradient-1: linear-gradient(50deg, #fefffe, #3a5a40);
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  background-color: rgb(250, 255, 250);
  color: var(--white);
}

/* Contact Label */
.contact-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--pastelgreen);
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, rgba(52, 78, 65, 0.92), rgba(0, 0, 0, 0.85)),
    url('../assets/images/VAs.webp');
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin: 10px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-overlay {
  text-align: center;
  padding: 200px 60px 80px 60px;
  max-width: 750px;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  animation: contactFadeUp 1s ease;
}

.contact-hero p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(245, 245, 245, 0.85);
  line-height: 1.7;
  animation: contactFadeUp 1.3s ease;
}

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

/* Contact Us Section Styles */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 60px auto 80px auto;
  padding: 0 80px;
}

.contact-container1 {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  color: var(--darkgreen);
}

.contact-container1 h1 {
  text-align: start;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--black);
}

.contact-container1 p {
  font-size: 1.05rem;
  font-weight: 300;
  color: #444;
  line-height: 1.7;
}

.contact-container2 {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 40px;
}

/* Contact Form Styles */
.contact-form h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  text-align: start;
  margin-bottom: 4px;
}

.contact-form-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  color: #888;
  margin-bottom: 28px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}

.contact-form-group label .required {
  color: #e74c3c;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--black);
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  background-color: #fafffe;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: #bbb;
  font-weight: 300;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  border-color: var(--lightgreen);
  box-shadow: 0 0 0 3px rgba(88, 129, 87, 0.12);
}

.contact-form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23888'%3E%3Cpath d='M12 16L6 10H18L12 16Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-form-group select option[disabled] {
  color: #bbb;
}

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

/* Age Verification */
.contact-form-age-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Checkbox & Radio Styles */
.contact-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

.contact-form-checkbox input[type="checkbox"],
.contact-form-checkbox input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 4px;
  accent-color: var(--lightgreen);
  cursor: pointer;
}

.contact-form-consent {
  margin-bottom: 0;
}

.contact-form-consent span {
  font-size: 0.88rem;
  font-weight: 300;
  color: #555;
  line-height: 1.65;
}

.contact-form-consent strong {
  font-weight: 600;
  color: #333;
}

/* Submit Button */
.contact-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--lightgreen), var(--green));
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.contact-form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(88, 129, 87, 0.35);
}

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

/* Legal Links */
.contact-form-legal-links {
  font-size: 0.85rem;
  font-weight: 400;
  color: #aaa;
  text-align: center;
  margin-top: 16px;
}

.contact-form-legal-links a {
  color: var(--lightgreen);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-form-legal-links a:hover {
  color: var(--darkgreen);
  text-decoration: underline;
}

.contact-email {
  display: flex;
  flex-direction: column;
  background-color: white;
  color: var(--darkgreen);
  padding: 30px;
  margin-top: 30px;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  gap: 10px;
  border-left: 4px solid var(--lightgreen);
}

.contact-email svg {
  width: 2rem;
  height: 2rem;
  color: var(--lightgreen);
  fill: var(--lightgreen);
}

.contact-email p {
  font-size: 1rem;
  font-weight: 300;
}

.contact-email span {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--darkgreen);
}

.contact-container1 h2 {
  text-align: start;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--darkgreen);
  margin-bottom: 10px;
  margin-top: 40px;
}

.contact-container1 a {
  color: var(--lightgreen);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-container1 a:hover {
  color: var(--darkgreen);
}

/* Form Message States */
.form-message {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  margin-top: 12px;
}

.form-message--success {
  background-color: #edf7ed;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.form-message--error {
  background-color: #fdecea;
  color: #c62828;
  border: 1px solid #f5c6cb;
}

/* Submit Button Loading State */
.contact-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.btn-spinner[hidden] {
  display: none;
}

.btn-text[hidden] {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .contact-section {
    grid-template-columns: 1fr;
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero-overlay {
    padding: 150px 20px 60px 20px;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .contact-section {
    margin: 40px auto 60px auto;
    padding: 0 20px;
  }

  .contact-container2 {
    padding: 25px 20px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-email {
    padding: 20px;
  }

  .contact-container1 h1 {
    text-align: center;
  }

  .contact-container1 p {
    text-align: center;
  }

  .contact-container1 h2 {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 410px) {
  .contact-hero h1 {
    font-size: 1.6rem;
  }

  .contact-hero-overlay {
    padding: 130px 15px 50px 15px;
  }

  .contact-section {
    padding: 0 10px;
  }

  .contact-container1 h1 {
    font-size: 1.5rem;
  }

  .contact-container2 {
    padding: 20px 15px;
  }

  .contact-form h2 {
    font-size: 1.3rem;
  }

  .contact-form-group input,
  .contact-form-group select,
  .contact-form-group textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}
