:root {
  /* Colors */
  --background: #fefefe;
  --foreground: #111;
  --primary: #00b050;
  --secondary: #d4f2dc;
  --input-bg: rgba(0, 176, 80, 0.05);
  --input-focus-bg: rgba(0, 176, 80, 0.1);
  --button-gradient-start: #00b050;
  --button-gradient-end: #33fff3;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fefefe;
  color: var(--foreground);
  line-height: 1.7;
}

.contact-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.contact-container {
  max-width: 1200px;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 0 15px rgba(0, 176, 80, 0.25);
  position: relative;
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-box {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Contact Info */
.contact-info {
  flex: 1;
}

.info-block a{
  color: #00b050;
  font-weight: 500;
}

.contact-info h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #007f33;
}

.contact-info p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.info-block {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #222;
}

.info-block i {
  margin-right: 10px;
  color: var(--primary);
}

.footer-social a {
  margin: 0 10px;
  font-size: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  color: #555;
}

.footer-social a:hover {
  transform: scale(1.2);
  text-shadow: 0 0 6px rgba(0, 176, 80, 0.4);
}



/* Contact Form */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: var(--input-bg);
  color: var(--foreground);
  font-size: 1rem;
  outline: none;
  resize: none;
  transition: background 0.3s, border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--input-focus-bg);
  border-color: var(--primary);
}

.contact-form button {
  padding: 1rem;
  background: linear-gradient(135deg, var(--button-gradient-start), var(--button-gradient-end));
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: linear-gradient(135deg, var(--button-gradient-end), var(--button-gradient-start));
  transform: scale(1.03);
}

/* Contact Direct */
.contact-direct {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.9rem;
  color: #555;
}

.contact-direct .direct-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.contact-direct .direct-link:hover {
  text-decoration: underline;
}


.footer-social a {
      margin: 0 10px;
      font-size: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: inline-block;
      color: #ccc;
    }

    .footer-social a:hover {
      transform: scale(1.2);
      text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    }

    .footer-social .facebook i { color: #1877f2; }
    .footer-social .instagram i { color: #e4405f; }
    .footer-social .twitter i { color: #000; }
    .footer-social .linkedin i { color: #0077b5; }

    .form-status {
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.form-status.show {
  opacity: 1;
}


.footer {
    background-color: #f0f0f0;
    color: var(--foreground);
    text-align: center;
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--border);
}


.footer-content p {
  margin: 0;
  font-size: 0.95rem;
}

.footer-right {
  font-family: monospace;
  color: #555;
}
