:root {
  --primary-color: #2207ec;
  --secondary-color: #00cecb;
  --dark-color: #2d3436;
  --light-color: #f5f6fa;
}
  
  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.9s ease;
    font-weight: 700;
}

.navbar.scrolled {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    padding: 5px 0;
    border-radius: 30px;
    margin-top: 8px;
}
  .contact-header {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contact.jpg');
      background-size: cover;
      background-position: center;
      color: white;
      padding: 200px 0 180px;
  }
  
  .contact-card {
      border: none;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      height: 100%;
  }
  
  .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  }
  
  .contact-icon {
      font-size: 2rem;
      color: var(--secondary-color);
      margin-bottom: 15px;
      transition: all 0.3s ease;
  }
  
  .contact-card:hover .contact-icon {
      transform: scale(1.2);
      color: var(--accent-color);
  }
  
  .form-control {
      padding: 12px 15px;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      transition: all 0.3s ease;
  }
  
  .form-control:focus {
      border-color: var(--accent-color);
      box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
  }
  
  .btn-primary {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
        padding: 5px 12px;
        font-weight: 600;
        transition: all 0.3s ease;
        border-radius: 30px;
    }
  
  .btn-primary:hover {
      background-color: #c0392b;
      border-color: #c0392b;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .map-container {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      height: 100%;
  }
  
  .map-container iframe {
      width: 100%;
      height: 100%;
      min-height: 300px;
      border: none;
  }
  
  .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: var(--light-color);
      color: var(--dark-color);
      margin-right: 10px;
      transition: all 0.3s ease;
  }
  
  .social-link:hover {
      background-color: var(--secondary-color);
      color: white;
      transform: translateY(-3px);
  }
  
  .back-to-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      background-color: var(--secondary-color);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 999;
  }
  
  .back-to-top.active {
      opacity: 1;
      visibility: visible;
  }
  
  .back-to-top:hover {
      background-color: var(--accent-color);
      transform: translateY(-5px);
  }

  
  #whatsapp-message {
    position: fixed;
    bottom: 60px; /* Distance from the bottom */
    right: 10px;  /* Distance from the right */
    z-index: 1000; /* Ensure it stays on top */
  }

  .whatsapp-icon {
    cursor: pointer; /* Changes cursor to a pointer */
  }