.footer {
  background: #1a2c5b;
  color: #ffffff;
  position: relative;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.15);
}

.footer-container {
  /* max-width: 1?00px; */
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding: 60px;
  margin-bottom: -80px;
}

.footer-section {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.footer-section:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-section:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-section:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-section:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-titless {
  color: white;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #ffffff;
  letter-spacing: -0.025em;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  opacity: 0.8;
}

/* Contact Form Styles */
.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.form-intro {
  margin-bottom: 30px;
}

.form-intro h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.form-intro p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 4px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.025em;
}

.footer-contact-form {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  height: 20px;
}

.footer-contact-form:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #ffffff;
  color: rgb(47, 49, 146);
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  letter-spacing: 0.025em;
  width: 100%;
}

.submit-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: #0a66c2;
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Footer Links */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
  display: block;
  padding: 4px 0;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 8px;
  transform: translateX(4px);
}

/* Contact Information */
.contact-item-footer {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

.contact-text {
  color: white;
  font-weight: 400;
}

.contact-text strong {
  color: #ffffff;
  font-weight: 500;
}

/* Social Media Links */
.social-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}

.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  border-color: #e6683c;
}

.twitter:hover {
  background: #000000;
  border-color: #000000;
}

.social-link svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.social-link:hover svg {
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 60px;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-left {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-bottom-right {
  display: flex;
  gap: 30px;
}

.footer-bottom-right a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
  color: #ffffff;
}

/* Success Message */
.success-message {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f8fafc; /* Light gray background */
}
