/* =============================
   CONTACT SECTION MODERN DESIGN
   ============================= */
.contact-section {
  background: linear-gradient(135deg, #f5fff8, #e9f8f0);
  padding: 80px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.interaction-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card options */
.contact-options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card-option {
  flex: 1 1 45%;
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  text-align: center;
}
.card-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.card-option .icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

/* Form styling */
.contact-form {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  animation: fadeInUp 0.4s ease;
}

.contact-form h2 {
  margin-bottom: 20px;
  color: var(--ld-primary, #0a4d2b);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d0e2d9;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ld-primary, #0a4d2b);
  box-shadow: 0 0 0 3px rgba(10,77,43,0.15);
}

/* Buttons */
.btn.primary {
  background: var(--ld-primary, #0a4d2b);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
  transition: background 0.3s ease;
}
.btn.primary:hover {
  background: #118a55;
}
.btn.outline {
  border: 2px solid var(--ld-primary, #0a4d2b);
  color: var(--ld-primary, #0a4d2b);
  background: transparent;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn.outline:hover {
  background: var(--ld-primary, #0a4d2b);
  color: white;
}

/* Contact Info */
.contact-info {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.contact-info h2 {
  margin-bottom: 16px;
}
.contact-info p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
  margin: 16px 0;
}
.social-links a {
  font-size: 1.3rem;
  color: var(--ld-primary, #0a4d2b);
  transition: color 0.3s ease;
}
.social-links a:hover { color: #118a55; }

.contact-cta {
  margin-top: 20px;
}

/* Animation */
@keyframes fadeInUp {
  from {opacity:0; transform:translateY(10px);}
  to {opacity:1; transform:translateY(0);}
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}




/*Main top banner sections.css*/
.hero-section {
  --hero-background: linear-gradient(180deg, rgba(16, 83, 226, 0.856), rgba(255, 255, 255, .92));
}