/* Contact Page Styles */

/* Main Title */
.contact-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 12px;
    text-align: center;
  }
  
  .contact-main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: #c40d2e;
  }
  
  /* Alert Styling */
  .alert {
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
  }
  
  .alert-icon {
    margin-right: 0.5rem;
    color: #155724;
  }
  
  .fade-in {
    animation: fadeIn 0.5s ease-in;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Contact Form Container */
  .contact-form-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  /* Quick Info */
  .contact-quick-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .quick-info-item {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.9rem;
  }
  
  .quick-info-item svg {
    margin-right: 0.4rem;
    color: #c40d2e;
  }
  
  .quick-info-item a {
    color: #c40d2e;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .quick-info-item a:hover {
    color: #6b0016;
    text-decoration: underline;
  }
  
  /* Social Links */
  .form-links {
    display: flex;
    align-items: start;
    gap: 1rem;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #c40d2f10;
    color: #c40d2e !important;
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background-color: #c40d2e;
    color: white !important;
    transform: translateY(-2px);
  }
  
  /* Form Styling */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-group {
    margin-bottom: 0;
  }
  
  .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.3rem;
    display: block;
  }
  
  .required {
    color: #c40d2e;
    margin-left: 0.25rem;
  }
  
  .form-control {
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    border-color: #c40d2e;
    box-shadow: 0 0 0 0.2rem rgba(143, 0, 29, 0.25);
  }
  
  textarea.form-control {
    resize: vertical;
  }
  
  /* Form Checks Container */
  .form-checks-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form-check-input {
    margin-top: 0.25rem;
  }
  
  .form-check-input:checked {
    background-color: #c40d2e;
    border-color: #c40d2e;
  }
  
  .form-check-label {
    font-size: 0.85rem;
    color: #555;
  }
  
  .terms-link {
    color: #c40d2e;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .terms-link:hover {
    color: #c2082a;
    text-decoration: underline;
  }
  
  /* Form Footer */
  .form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  /* ReCaptcha Container */
  .recaptcha-container {
    flex-grow: 1;
  }
  
  /* Form Submit */
  .form-submit {
    text-align: right;
  }
  
  /* Button styling */
  .button-tertiary-color {
    background: linear-gradient(145deg, #8f001d, #a50023);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(143, 0, 29, 0.25);
  }
  
  .button-tertiary-color:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
    z-index: 1;
  }
  
  .button-tertiary-color:hover {
    background: linear-gradient(145deg, #7a0018, #8f001d);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(143, 0, 29, 0.3);
  }
  
  .button-tertiary-color:hover:before {
    left: 100%;
  }
  
  .btn-icon {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }
  
  .button-tertiary-color:hover .btn-icon {
    transform: translateX(3px);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .contact-main-title {
      font-size: 1.8rem;
    }
  
    .form-footer {
      flex-direction: column;
      align-items: stretch;
    }
  
    .recaptcha-container {
      display: flex;
      justify-content: center;
    }
  }
  