

/* Footer */
footer {
  background-color: #06152F;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #AFCBFF;
}


.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.footer-columns {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}

.footer-column {
padding: 0 15px;
}

.footer-logo {
display: flex;
align-items: center;
margin-bottom: 1rem;
}

.footer-logo img {
height: 40px;
margin-right: 10px;
}

.footer-logo span {
font-weight: 700;
font-size: 1.2rem;
}

.footer-mission {
margin-bottom: 1.5rem;
line-height: 1.6;
opacity: 0.9;
}

.footer-title {
font-size: 1.2rem;
margin-bottom: 1.5rem;
position: relative;
padding-bottom: 10px;
}

.footer-title::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 2px;
background-color: #5FA8D3;
}

.footer-links {
list-style: none;
padding: 0;
}

.footer-links li {
margin-bottom: 0.8rem;
}

.footer-links a {
color: #ecf0f1;
text-decoration: none;
transition: color 0.3s;
opacity: 0.9;
}

.footer-links a:hover {
color: #5FA8D3;
opacity: 1;
}

.footer-contact p {
margin-bottom: 1rem;
display: flex;
align-items: center;
opacity: 0.9;
}

.contact-icon {
margin-right: 10px;
font-size: 1.1rem;
}

.footer-social {
display: flex;
gap: 15px;
margin-top: 1.5rem;
}

.social-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
background-color: #34495e;
color: white;
border-radius: 50%;
text-decoration: none;
transition: background-color 0.3s;
}

.social-icon:hover {
background-color: #5FA8D3;
}

.footer-newsletter h4 {
margin-bottom: 1rem;
}

.newsletter-form {
display: flex;
gap: 10px;
}

.newsletter-form input {
flex: 1;
padding: 10px;
border: none;
border-radius: 4px;
font-family: 'Inter', sans-serif;
}

.newsletter-form button {
background-color: #5FA8D3;
color: white;
border: none;
padding: 0 20px;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}

.newsletter-form button:hover {
background-color: #4a8bb8;
}

.footer-bottom {
border-top: 1px solid #34495e;
padding: 1.5rem 0;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.footer-legal {
margin-bottom: 1rem;
}

.footer-legal p {
margin-bottom: 0.5rem;
opacity: 0.8;
}

.footer-legal-links {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.footer-legal-links a {
color: #ecf0f1;
text-decoration: none;
font-size: 0.9rem;
opacity: 0.8;
transition: opacity 0.3s;
}

.footer-legal-links a:hover {
opacity: 1;
text-decoration: underline;
}

.footer-language {
display: flex;
align-items: center;
gap: 10px;
}

.footer-language span {
opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.footer-columns {
grid-template-columns: 1fr;
}

.footer-column {
margin-bottom: 2rem;
}

.footer-bottom {
flex-direction: column;
}

.footer-legal-links {
flex-direction: column;
gap: 5px;
}
}

/* Verification Page Styles */
.verification-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.verification-form {
  margin: 2rem 0;
}

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

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

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.verify-btn {
  background-color: #0066cc;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.verify-btn:hover {
  background-color: #669dd3;
}

.result-card {
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.result-card.valid {
  background-color: #f0f9f0;
  border-left: 4px solid #4CAF50;
}

.result-card.invalid {
  background-color: #fff0f0;
  border-left: 4px solid #f44336;
}

.download-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.hidden {
  display: none;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-style: normal;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .contact-item:hover {
    transform: translateX(3px);
  }
  
  .contact-icon {
    font-size: 1.1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .contact-item a:hover {
    text-decoration: underline;
  }
  
  /* Specific item styles */
  .location {
    background: rgba(156, 204, 101, 0.15);
    color: #9ccc65;
  }
  
  .email {
    background: rgba(77, 208, 225, 0.15);
    color: #4dd0e1;
  }
  
  .phone {
    background: rgba(100, 181, 246, 0.15);
    color: #64b5f6;
  }
  
  .whatsapp {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .footer-contact {
      padding: 10px;
    }
    
    .contact-item {
      padding: 6px 10px;
    }
  }