/* Contact Page Specific Styles */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c41e3a);
  z-index: 2;
}
.hero-contacts {
    height: 60vh;
    background: linear-gradient(135deg, rgba(220, 38, 127, 0.9), rgba(220, 38, 127, 0.7)),
      url("/placeholder.svg?height=600&width=1200") center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  
  .hero-contacts::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  
  .hero-contacts .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
  }
  
  .hero-contacts .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .hero-contacts .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
  }
  
  /* Contact Section */
  .contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  
  /* Contact Info */
  .contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
  }
  
  .contact-info.visible {
    transform: translateY(0);
    opacity: 1;
  }
  
  .contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #c41e3a;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  .contact-item:hover {
    background: #f8f9fa;
    transform: translateX(10px);
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c41e3a, #ff6b9d);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .contact-icon i {
    color: white;
    font-size: 1.2rem;
  }
  
  .contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  }
  
  .contact-details p {
    color: #6c757d;
    margin-bottom: 0.25rem;
    font-weight: 400;
  }
  
  /* Social Links */
  .social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
  }
  
  .social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c41e3a, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(220, 38, 127, 0.3);
  }
  
  /* Contact Form */
  .contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
  }
  
  .contact-form-container.visible {
    transform: translateY(0);
    opacity: 1;
  }
  
  .form-group {
    position: relative;
    margin-bottom: 2rem;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 0;
    border: none;
    border-bottom: 2px solid #e9ecef;
    background: transparent;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group input:valid,
  .form-group textarea:valid {
    border-bottom-color: #c41e3a;
  }
  
  .form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 1rem;
    color: #6c757d;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus + label,
  .form-group textarea:focus + label,
  .form-group input:valid + label,
  .form-group textarea:valid + label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: #c41e3a;
    font-weight: 500;
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  /* Checkbox Group */
  .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #c41e3a;
  }
  
  .checkbox-label {
    position: static;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
    cursor: pointer;
  }
  
  .privacy-link {
    color: #c41e3a;
    text-decoration: none;
    font-weight: 500;
  }
  
  .privacy-link:hover {
    text-decoration: underline;
  }
  
  .required-note {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 2rem;
    font-style: italic;
  }
  
  /* Submit Button */
  .submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #c41e3a, #ff6b9d);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 127, 0.3);
  }
  
  .submit-btn:active {
    transform: translateY(0);
  }
  
  /* Map Section */
  .map-section {
    padding: 5rem 0;
    background: white;
  }
  
  .map-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
  }
  
  .map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease;
  }
  
  .map-container.visible {
    transform: translateY(0);
    opacity: 1;
  }
  
  .map-placeholder iframe {
    width: 100%;
    height: 400px;
    border: none;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-contacts .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-contacts .hero-subtitle {
      font-size: 1rem;
    }
  
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .contact-info,
    .contact-form-container {
      padding: 1.5rem;
    }
  
    .contact-item {
      flex-direction: column;
      text-align: center;
    }
  
    .contact-item:hover {
      transform: translateY(-5px);
    }
  
    .contact-icon {
      margin: 0 auto 1rem auto;
    }
  
    .map-title {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-contacts {
      height: 50vh;
    }
  
    .hero-contacts .hero-title {
      font-size: 2rem;
    }
  
    .contact-section {
      padding: 3rem 0;
    }
  
    .contact-info,
    .contact-form-container {
      padding: 1rem;
    }
  
    .checkbox-group {
      flex-direction: column;
      gap: 0.5rem;
    }
  }
  
  /* Animation Classes */
  .fade-in-left {
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.8s ease;
  }
  
  .fade-in-left.visible {
    transform: translateX(0);
    opacity: 1;
  }
  
  .fade-in-right {
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.8s ease;
  }
  
  .fade-in-right.visible {
    transform: translateX(0);
    opacity: 1;
  }
   /* Footer */
   .footer {
    background: var(--text-dark);
    padding: 2rem 0;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
  }
  
  .social-link:hover {
    background: #a91b3d;
    transform: translateY(-3px);
  }
  
  /* WhatsApp Button */
  .whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
  }
  
  .whatsapp-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: pulse 2s infinite;
  }
  
  .whatsapp-btn a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
  }