.contact-page .contact-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
  }

  .contact-page .contact-info {
    background: black;
    padding: 40px;
    color: white;
  }

  .contact-page .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
  }

  .contact-page .contact-item:hover {
    transform: translateX(10px);
  }

  .contact-page .contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }

  .contact-page .social-links {
    margin-top: 30px;
  }

  .contact-page .social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
  }

  .contact-page .social-icon:hover {
    background: white;
    color: #0062cc;
    transform: translateY(-3px);
  }

  .contact-page .contact-form {
    padding: 40px;
  }

  .contact-page .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
  }

  .contact-page .form-control:focus {
    border-color: #0062cc;
    box-shadow: none;
  }

  .contact-page .form-label {
    font-weight: 500;
    margin-bottom: 8px;
  }

  .contact-page .btn-submit {
    background: linear-gradient(135deg, #000000, #000000);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .contact-page .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .contact-page .map-container {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
  }